| 41 | } |
| 42 | |
| 43 | template<typename TSerializer> void Serialize(TSerializer& serializer) |
| 44 | { |
| 45 | SerializeRawVector(serializer, Texels); |
| 46 | SerializeItem(serializer, Width); |
| 47 | SerializeItem(serializer, Height); |
| 48 | SerializeItem(serializer, NumSlices); |
| 49 | } |
| 50 | }; |
| 51 | |
| 52 | // Decode a texture and copies it to the CPU |
nothing calls this directly
no test coverage detected