diff options
author | Ilia Mirkin <[email protected]> | 2015-06-17 23:00:44 -0400 |
---|---|---|
committer | Ilia Mirkin <[email protected]> | 2015-06-18 13:21:44 -0400 |
commit | 770f141866654dab969302f720228497f0fb35fd (patch) | |
tree | 058f4f73da4a19cd5e24d7eaaa0064fe34d87233 /src/mesa/main/pipelineobj.h | |
parent | b6e238023c4f8af2328dc3bcab1d73a3e19f4fbb (diff) |
mesa: add GL_PROGRAM_PIPELINE support in KHR_debug calls
This was apparently missed when ARB_sso support was added.
Add label support to pipeline objects just like all the other
debug-related objects.
Signed-off-by: Ilia Mirkin <[email protected]>
Reviewed-by: Timothy Arceri <[email protected]>
Cc: "10.5 10.6" <[email protected]>
Diffstat (limited to 'src/mesa/main/pipelineobj.h')
-rw-r--r-- | src/mesa/main/pipelineobj.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mesa/main/pipelineobj.h b/src/mesa/main/pipelineobj.h index b57bcb99e5c..6dee775ab5e 100644 --- a/src/mesa/main/pipelineobj.h +++ b/src/mesa/main/pipelineobj.h @@ -45,6 +45,9 @@ _mesa_init_pipeline(struct gl_context *ctx); extern void _mesa_free_pipeline_data(struct gl_context *ctx); +extern struct gl_pipeline_object * +_mesa_lookup_pipeline_object(struct gl_context *ctx, GLuint id); + extern void _mesa_reference_pipeline_object_(struct gl_context *ctx, struct gl_pipeline_object **ptr, |