diff options
author | Fritz Koenig <[email protected]> | 2019-07-30 14:53:30 -0700 |
---|---|---|
committer | Fritz Koenig <[email protected]> | 2019-10-08 13:53:01 -0700 |
commit | 66937abe2b089ae897197f748bd358c018dc52f7 (patch) | |
tree | 9abd39ff4fd96f70953cdf275dba49e669d713b6 /src/mesa/main/tests | |
parent | 9fb76392de4b3df558130df22ab483896a7fc257 (diff) |
mesa: Allow MESA_framebuffer_flip_y for GLES 3
Implement glFramebufferParameteriMESA on GLES 3 so
that the extension is not dependant on GLES 3.1
Reviewed-by: Eric Anholt <[email protected]>
Reviewed-by: Kristian H. Kristensen <[email protected]>
Diffstat (limited to 'src/mesa/main/tests')
-rw-r--r-- | src/mesa/main/tests/dispatch_sanity.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/mesa/main/tests/dispatch_sanity.cpp b/src/mesa/main/tests/dispatch_sanity.cpp index 6ba5180592e..c3ac7beb73e 100644 --- a/src/mesa/main/tests/dispatch_sanity.cpp +++ b/src/mesa/main/tests/dispatch_sanity.cpp @@ -1412,6 +1412,10 @@ const struct function common_desktop_functions_possible[] = { /* GL_EXT_shader_image_load_store */ { "glBindImageTextureEXT", 30, -1 }, + /* GL_MESA_framebuffer_flip_y */ + { "glFramebufferParameteriMESA", 43, -1 }, + { "glGetFramebufferParameterivMESA", 43, -1 }, + { NULL, 0, -1 } }; @@ -2653,6 +2657,10 @@ const struct function gles3_functions_possible[] = { { "glRenderbufferStorageMultisampleAdvancedAMD", 11, -1 }, { "glNamedRenderbufferStorageMultisampleAdvancedAMD", 11, -1 }, + /* GL_MESA_framebuffer_flip_y */ + { "glFramebufferParameteriMESA", 30, -1 }, + { "glGetFramebufferParameterivMESA", 30, -1 }, + { NULL, 0, -1 } }; |