diff options
author | Ian Romanick <[email protected]> | 2014-01-07 16:57:11 -0800 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2014-01-20 11:31:58 -0800 |
commit | 3eb135d1c72487619ec4ba2338a90b73c7bcda0d (patch) | |
tree | b291987ae62dccdd8694456741fd0e2e017583ad /src/mesa/main/viewport.h | |
parent | cbb271a48845c2d236f31327df316d42888a1907 (diff) |
mesa: Add an index parameter to _mesa_set_viewport
Signed-off-by: Ian Romanick <[email protected]>
Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/mesa/main/viewport.h')
-rw-r--r-- | src/mesa/main/viewport.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/viewport.h b/src/mesa/main/viewport.h index ffa3a729ce0..b4eb5217cd1 100644 --- a/src/mesa/main/viewport.h +++ b/src/mesa/main/viewport.h @@ -36,7 +36,7 @@ _mesa_Viewport(GLint x, GLint y, GLsizei width, GLsizei height); extern void -_mesa_set_viewport(struct gl_context *ctx, GLint x, GLint y, +_mesa_set_viewport(struct gl_context *ctx, unsigned idx, GLint x, GLint y, GLsizei width, GLsizei height); |