1
0
Fork 0

cogl/gles2: Only support rgba1010102 on little endian systems

We already check for this in various places but we still advertised this
feature when it's not actually supported.

Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/3441>
This commit is contained in:
Sebastian Wick 2023-12-04 17:14:49 +01:00
parent dc3866adf4
commit 07bfb24312

View file

@ -523,9 +523,11 @@ _cogl_driver_update_features (CoglContext *context,
COGL_FLAGS_SET (private_features,
COGL_PRIVATE_FEATURE_TEXTURE_FORMAT_BGRA8888, TRUE);
#if G_BYTE_ORDER == G_LITTLE_ENDIAN
if (COGL_CHECK_GL_VERSION (gl_major, gl_minor, 3, 0))
COGL_FLAGS_SET (context->features,
COGL_FEATURE_ID_TEXTURE_RGBA1010102, TRUE);
#endif
if (COGL_CHECK_GL_VERSION (gl_major, gl_minor, 3, 2) ||
(_cogl_check_extension ("GL_OES_texture_half_float", gl_extensions) &&