| 42 | uint32 NumSlices = 0; |
| 43 | |
| 44 | void Init(uint32 width, uint32 height, uint32 numSlices) |
| 45 | { |
| 46 | Width = width; |
| 47 | Height = height; |
| 48 | NumSlices = numSlices; |
| 49 | Texels.Init(width * height * numSlices); |
| 50 | } |
| 51 | |
| 52 | template<typename TSerializer> void Serialize(TSerializer& serializer) |
| 53 | { |
nothing calls this directly
no outgoing calls
no test coverage detected