diff options
author | Timothy Arceri <[email protected]> | 2015-12-06 15:30:34 +1100 |
---|---|---|
committer | Timothy Arceri <[email protected]> | 2015-12-07 21:41:09 +1100 |
commit | ad0262185420db03e8256ef20a0f5b1b1de003d8 (patch) | |
tree | 41f1fb2da26517b81ab550a94ff2c95345d46406 /src/mesa/main/pipelineobj.h | |
parent | 4dd096d74178e66334089fb0ed01cbf2d6117fac (diff) |
mesa: move GL_INVALID_OPERATION error to rendering call
The validation api doesn't trigger this error so just move it to the
code called during rendering.
Reviewed-by: Tapani Pälli <[email protected]>
Cc: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/mesa/main/pipelineobj.h')
-rw-r--r-- | src/mesa/main/pipelineobj.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mesa/main/pipelineobj.h b/src/mesa/main/pipelineobj.h index 6dee775ab5e..fbcb7659249 100644 --- a/src/mesa/main/pipelineobj.h +++ b/src/mesa/main/pipelineobj.h @@ -67,7 +67,8 @@ _mesa_bind_pipeline(struct gl_context *ctx, struct gl_pipeline_object *pipe); extern GLboolean -_mesa_validate_program_pipeline(struct gl_context * ctx, struct gl_pipeline_object *pipe, GLboolean IsBound); +_mesa_validate_program_pipeline(struct gl_context * ctx, + struct gl_pipeline_object *pipe); extern void GLAPIENTRY |