diff options
author | Ilia Mirkin <[email protected]> | 2016-06-09 22:10:10 -0400 |
---|---|---|
committer | Ilia Mirkin <[email protected]> | 2016-06-18 12:51:55 -0400 |
commit | 78506ad2466563d9ec3f8d09a746a069e6cab6b5 (patch) | |
tree | 20bf7b4b2a0afd6ef959737854e5cc270703f408 /src/mesa/main/tests | |
parent | b214e0d2fb736afcc6eb222a29a4d2fad31acacf (diff) |
glapi: add GL_EXT_window_rectangles entrypoints
Signed-off-by: Ilia Mirkin <[email protected]>
Reviewed-by: Brian Paul <[email protected]>
Diffstat (limited to 'src/mesa/main/tests')
-rw-r--r-- | src/mesa/main/tests/dispatch_sanity.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/mesa/main/tests/dispatch_sanity.cpp b/src/mesa/main/tests/dispatch_sanity.cpp index e81aaa26064..ee3c3d4abe7 100644 --- a/src/mesa/main/tests/dispatch_sanity.cpp +++ b/src/mesa/main/tests/dispatch_sanity.cpp @@ -952,6 +952,9 @@ const struct function common_desktop_functions_possible[] = { /* GL_GREMEDY_string_marker */ { "glStringMarkerGREMEDY", 15, -1 }, + /* GL_EXT_window_rectangles */ + { "glWindowRectanglesEXT", 30, -1 }, + { NULL, 0, -1 } }; @@ -2494,6 +2497,9 @@ const struct function gles3_functions_possible[] = { { "glDrawElementsInstancedBaseInstanceEXT", 30, -1 }, { "glDrawElementsInstancedBaseVertexBaseInstanceEXT", 30, -1 }, + /* GL_EXT_window_rectangles */ + { "glWindowRectanglesEXT", 30, -1 }, + { NULL, 0, -1 } }; |