diff options
author | Brian Paul <[email protected]> | 2017-05-02 11:32:08 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2017-05-03 08:48:46 -0600 |
commit | a30313abf670c114b94a62c20c2f013f58a5ca2f (patch) | |
tree | 370acab541b7615d7e5de46d7e4d79d209accf0e /src/mesa/main/api_validate.c | |
parent | f57e234fdd52331d0aa6656a36efdebea9d11e9d (diff) |
mesa: add const qualifier on _mesa_valid_to_render()
Reviewed-by: Marek Olšák <[email protected]>
Diffstat (limited to 'src/mesa/main/api_validate.c')
-rw-r--r-- | src/mesa/main/api_validate.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/api_validate.c b/src/mesa/main/api_validate.c index bddde29878a..4694c36e8d1 100644 --- a/src/mesa/main/api_validate.c +++ b/src/mesa/main/api_validate.c @@ -324,7 +324,7 @@ check_valid_to_render(struct gl_context *ctx, const char *function) * Note: This may be called during display list compilation. */ bool -_mesa_is_valid_prim_mode(struct gl_context *ctx, GLenum mode) +_mesa_is_valid_prim_mode(const struct gl_context *ctx, GLenum mode) { /* The overwhelmingly common case is (mode <= GL_TRIANGLE_FAN). Test that * first and exit. You would think that a switch-statement would be the |