mesa/sso: Add extension entry points for GL_ARB_separate_shader_objects
[mesa.git] / src / mesa / main / pipelineobj.h
1 /*
2 * Mesa 3-D graphics library
3 *
4 * Copyright © 2013 Gregory Hainaut <gregory.hainaut@gmail.com>
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the "Software"),
8 * to deal in the Software without restriction, including without limitation
9 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
10 * and/or sell copies of the Software, and to permit persons to whom the
11 * Software is furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice (including the next
14 * paragraph) shall be included in all copies or substantial portions of the
15 * Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
22 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
23 * IN THE SOFTWARE.
24 */
25
26 #ifndef PIPELINEOBJ_H
27 #define PIPELINEOBJ_H
28
29 #include "glheader.h"
30
31 #ifdef __cplusplus
32 extern "C" {
33 #endif
34
35 struct _glapi_table;
36 struct gl_context;
37
38 extern void GLAPIENTRY
39 _mesa_UseProgramStages(GLuint pipeline, GLbitfield stages, GLuint program);
40
41 extern void GLAPIENTRY
42 _mesa_ActiveShaderProgram(GLuint pipeline, GLuint program);
43
44 extern void GLAPIENTRY
45 _mesa_BindProgramPipeline(GLuint pipeline);
46
47 extern void GLAPIENTRY
48 _mesa_DeleteProgramPipelines(GLsizei n, const GLuint *pipelines);
49
50 extern void GLAPIENTRY
51 _mesa_GenProgramPipelines(GLsizei n, GLuint *pipelines);
52
53 extern GLboolean GLAPIENTRY
54 _mesa_IsProgramPipeline(GLuint pipeline);
55
56 extern void GLAPIENTRY
57 _mesa_GetProgramPipelineiv(GLuint pipeline, GLenum pname, GLint *params);
58
59 extern void GLAPIENTRY
60 _mesa_ValidateProgramPipeline(GLuint pipeline);
61
62 extern void GLAPIENTRY
63 _mesa_GetProgramPipelineInfoLog(GLuint pipeline, GLsizei bufSize,
64 GLsizei *length, GLchar *infoLog);
65
66 #ifdef __cplusplus
67 }
68 #endif
69
70 #endif /* PIPELINEOBJ_H */