| 108 | } |
| 109 | |
| 110 | void CSimpleImage::Create(const SImage& Img, uint Align) |
| 111 | { |
| 112 | ((SImage&)*this) = Img; |
| 113 | Free(); |
| 114 | m_Data = new unsigned char[Step * Height + Align]; |
| 115 | m_Offset = (uint) align(m_Data, Align); |
| 116 | } |
| 117 | |
| 118 | void CSimpleImage::Create(uint W, uint H, uint C, SImage::EDataType T, uint Align) |
| 119 | { |
nothing calls this directly
no test coverage detected