diff options
Diffstat (limited to 'video/out/opengl')
-rw-r--r-- | video/out/opengl/formats.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/video/out/opengl/formats.c b/video/out/opengl/formats.c index 36f76df459..b56da5ddc2 100644 --- a/video/out/opengl/formats.c +++ b/video/out/opengl/formats.c @@ -35,10 +35,10 @@ const struct gl_format gl_formats[] = { {GL_RGBA16, GL_RGBA, T_U16, F_TF | F_GL2}, // ES2 legacy - {GL_LUMINANCE, GL_LUMINANCE, T_U8, F_CF | F_ES2}, - {GL_LUMINANCE_ALPHA, GL_LUMINANCE_ALPHA, T_U8, F_CF | F_ES2}, - {GL_RGB, GL_RGB, T_U8, F_CF | F_ES2}, - {GL_RGBA, GL_RGBA, T_U8, F_CF | F_ES2}, + {GL_LUMINANCE, GL_LUMINANCE, T_U8, F_TF | F_ES2}, + {GL_LUMINANCE_ALPHA, GL_LUMINANCE_ALPHA, T_U8, F_TF | F_ES2}, + {GL_RGB, GL_RGB, T_U8, F_TF | F_ES2}, + {GL_RGBA, GL_RGBA, T_U8, F_TF | F_ES2}, // Non-normalized integer formats. // Follows ES 3.0 as to which are color-renderable. |