aboutsummaryrefslogtreecommitdiffstats
path: root/src/mesa
diff options
context:
space:
mode:
authorIlia Mirkin <[email protected]>2016-06-09 22:10:10 -0400
committerIlia Mirkin <[email protected]>2016-06-18 12:51:55 -0400
commit78506ad2466563d9ec3f8d09a746a069e6cab6b5 (patch)
tree20bf7b4b2a0afd6ef959737854e5cc270703f408 /src/mesa
parentb214e0d2fb736afcc6eb222a29a4d2fad31acacf (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')
-rw-r--r--src/mesa/main/scissor.c7
-rw-r--r--src/mesa/main/scissor.h3
-rw-r--r--src/mesa/main/tests/dispatch_sanity.cpp6
3 files changed, 16 insertions, 0 deletions
diff --git a/src/mesa/main/scissor.c b/src/mesa/main/scissor.c
index bc8224c7d23..2b568e4926b 100644
--- a/src/mesa/main/scissor.c
+++ b/src/mesa/main/scissor.c
@@ -210,6 +210,13 @@ _mesa_ScissorIndexedv(GLuint index, const GLint *v)
ScissorIndexed(index, v[0], v[1], v[2], v[3], "glScissorIndexedv");
}
+void GLAPIENTRY
+_mesa_WindowRectanglesEXT(GLenum mode, GLsizei count, const GLint *box)
+{
+
+}
+
+
/**
* Initialize the context's scissor state.
* \param ctx the GL context.
diff --git a/src/mesa/main/scissor.h b/src/mesa/main/scissor.h
index 5f9a9945a99..1d0fac877b3 100644
--- a/src/mesa/main/scissor.h
+++ b/src/mesa/main/scissor.h
@@ -43,6 +43,9 @@ _mesa_ScissorIndexed(GLuint index, GLint left, GLint bottom, GLsizei width, GLsi
extern void GLAPIENTRY
_mesa_ScissorIndexedv(GLuint index, const GLint * v);
+extern void GLAPIENTRY
+_mesa_WindowRectanglesEXT(GLenum mode, GLsizei count, const GLint *box);
+
extern void
_mesa_set_scissor(struct gl_context *ctx, unsigned idx,
GLint x, GLint y, GLsizei width, GLsizei height);
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 }
};