X-Git-Url: https://git.libre-soc.org/?a=blobdiff_plain;f=src%2Fmesa%2Fmain%2Fviewport.h;h=395131982cfa8d319ac1eaf373496e4b02998a4e;hb=34953f8907fddd0d2b27d276580a1d3223047987;hp=899dc2d0bcca5c4c5e28e895b6340b41577f763e;hpb=107ae27e57dc2a1ddc6bbb7ea101c1c60794423f;p=mesa.git diff --git a/src/mesa/main/viewport.h b/src/mesa/main/viewport.h index 899dc2d0bcc..395131982cf 100644 --- a/src/mesa/main/viewport.h +++ b/src/mesa/main/viewport.h @@ -57,9 +57,15 @@ _mesa_DepthRangef(GLclampf nearval, GLclampf farval); extern void GLAPIENTRY _mesa_DepthRangeArrayv(GLuint first, GLsizei count, const GLclampd * v); +extern void GLAPIENTRY +_mesa_DepthRangeArrayfvOES(GLuint first, GLsizei count, const GLfloat * v); + extern void GLAPIENTRY _mesa_DepthRangeIndexed(GLuint index, GLclampd n, GLclampd f); +extern void GLAPIENTRY +_mesa_DepthRangeIndexedfOES(GLuint index, GLfloat n, GLfloat f); + extern void _mesa_set_depth_range(struct gl_context *ctx, unsigned idx, GLclampd nearval, GLclampd farval); @@ -73,6 +79,6 @@ _mesa_ClipControl(GLenum origin, GLenum depth); extern void _mesa_get_viewport_xform(struct gl_context *ctx, unsigned i, - double scale[3], double translate[3]); + float scale[3], float translate[3]); #endif