diff options
Diffstat (limited to 'src/mesa/main/viewport.c')
-rw-r--r-- | src/mesa/main/viewport.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/mesa/main/viewport.c b/src/mesa/main/viewport.c index 49ecdbb7dc1..b94cb56a4b7 100644 --- a/src/mesa/main/viewport.c +++ b/src/mesa/main/viewport.c @@ -220,6 +220,14 @@ viewport_indexed_err(struct gl_context *ctx, GLuint index, GLfloat x, GLfloat y, } void GLAPIENTRY +_mesa_ViewportIndexedf_no_error(GLuint index, GLfloat x, GLfloat y, + GLfloat w, GLfloat h) +{ + GET_CURRENT_CONTEXT(ctx); + _mesa_set_viewport(ctx, index, x, y, w, h); +} + +void GLAPIENTRY _mesa_ViewportIndexedf(GLuint index, GLfloat x, GLfloat y, GLfloat w, GLfloat h) { @@ -228,6 +236,13 @@ _mesa_ViewportIndexedf(GLuint index, GLfloat x, GLfloat y, } void GLAPIENTRY +_mesa_ViewportIndexedfv_no_error(GLuint index, const GLfloat *v) +{ + GET_CURRENT_CONTEXT(ctx); + _mesa_set_viewport(ctx, index, v[0], v[1], v[2], v[3]); +} + +void GLAPIENTRY _mesa_ViewportIndexedfv(GLuint index, const GLfloat *v) { GET_CURRENT_CONTEXT(ctx); |