From 411a72d4a2eb69e45701c5e19049f6c543a78f24 Mon Sep 17 00:00:00 2001 From: Ilia Mirkin Date: Fri, 16 Sep 2016 13:38:36 -0400 Subject: mesa: add new entrypoints for GL_OES_viewport_array Signed-off-by: Ilia Mirkin Reviewed-by: Anuj Phogat --- src/mesa/main/viewport.c | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'src/mesa/main/viewport.c') diff --git a/src/mesa/main/viewport.c b/src/mesa/main/viewport.c index 681e46bfcf7..f6eaa0f30a9 100644 --- a/src/mesa/main/viewport.c +++ b/src/mesa/main/viewport.c @@ -330,6 +330,12 @@ _mesa_DepthRangeArrayv(GLuint first, GLsizei count, const GLclampd *v) ctx->Driver.DepthRange(ctx); } +void GLAPIENTRY +_mesa_DepthRangeArrayfvOES(GLuint first, GLsizei count, const GLfloat *v) +{ + +} + /** * Update a single DepthRange * @@ -358,6 +364,12 @@ _mesa_DepthRangeIndexed(GLuint index, GLclampd nearval, GLclampd farval) _mesa_set_depth_range(ctx, index, nearval, farval); } +void GLAPIENTRY +_mesa_DepthRangeIndexedfOES(GLuint index, GLfloat nearval, GLfloat farval) +{ + +} + /** * Initialize the context viewport attribute group. * \param ctx the GL context. -- cgit v1.2.3