| 2159 | |
| 2160 | template <typename ElementType> |
| 2161 | ValueView create2DArrayView (ElementType* sourceData, uint32_t numArrayElements, uint32_t numVectorElements) |
| 2162 | { |
| 2163 | return ValueView (Type::createArrayOfVectors<ElementType> (numArrayElements, numVectorElements), sourceData, nullptr); |
| 2164 | } |
| 2165 | |
| 2166 | template <typename TargetType> |
| 2167 | TargetType ValueView::readContentAs() const { return readUnaligned<TargetType> (data); } |
no test coverage detected