private byte[] DecodeBC6H()
 {
     var buff = new byte[m_Width * m_Height * 4];
     if (!TextureDecoder.DecodeBC6(image_data, m_Width, m_Height, buff))
     {
         return null;
     }
     return buff;
 }
Пример #2
0
 private bool DecodeBC6H(byte[] image_data, byte[] buff)
 {
     return(TextureDecoder.DecodeBC6(image_data, m_Width, m_Height, buff));
 }