formats: fix endian ifdef

This commit is contained in:
Vaxry 2023-04-17 15:36:47 +01:00
parent 7c36a3e167
commit 25f14294a8

View file

@ -226,7 +226,7 @@ static const struct wlr_gles2_pixel_format formats[] = {
.gl_type = GL_UNSIGNED_BYTE, .gl_type = GL_UNSIGNED_BYTE,
.has_alpha = false, .has_alpha = false,
}, },
#if WLR_LITTLE_ENDIAN #if __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__
{ {
.drm_format = DRM_FORMAT_RGBX4444, .drm_format = DRM_FORMAT_RGBX4444,
.gl_format = GL_RGBA, .gl_format = GL_RGBA,