Merge pull request #7920 from radarhere/convert

This commit is contained in:
Hugo van Kemenade 2024-03-30 13:04:25 +02:00 committed by GitHub
commit b263719ad4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -967,6 +967,11 @@ static struct {
{"RGB", "I;16", rgb2i16l},
{"RGB", "I;16L", rgb2i16l},
{"RGB", "I;16B", rgb2i16b},
#ifdef WORDS_BIGENDIAN
{"RGB", "I;16N", rgb2i16b},
#else
{"RGB", "I;16N", rgb2i16l},
#endif
{"RGB", "F", rgb2f},
{"RGB", "BGR;15", rgb2bgr15},
{"RGB", "BGR;16", rgb2bgr16},