i965/mesa/st: eliminate gl_geometry_program
[mesa.git] / src / mesa / program / program.h
1 /*
2 * Mesa 3-D graphics library
3 *
4 * Copyright (C) 1999-2007 Brian Paul All Rights Reserved.
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 shall be included
14 * in all copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
17 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
20 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
21 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
22 * OTHER DEALINGS IN THE SOFTWARE.
23 */
24
25 /**
26 * \file program.c
27 * Vertex and fragment program support functions.
28 * \author Brian Paul
29 */
30
31
32 /**
33 * \mainpage Mesa vertex and fragment program module
34 *
35 * This module or directory contains most of the code for vertex and
36 * fragment programs and shaders, including state management, parsers,
37 * and (some) software routines for executing programs
38 */
39
40 #ifndef PROGRAM_H
41 #define PROGRAM_H
42
43 #include "main/compiler.h"
44 #include "main/mtypes.h"
45
46
47 #ifdef __cplusplus
48 extern "C" {
49 #endif
50
51 extern struct gl_program _mesa_DummyProgram;
52
53
54 extern void
55 _mesa_init_program(struct gl_context *ctx);
56
57 extern void
58 _mesa_free_program_data(struct gl_context *ctx);
59
60 extern void
61 _mesa_update_default_objects_program(struct gl_context *ctx);
62
63 extern void
64 _mesa_set_program_error(struct gl_context *ctx, GLint pos, const char *string);
65
66 extern struct gl_program *
67 _mesa_init_gl_program(struct gl_program *prog, GLenum target, GLuint id);
68
69 extern struct gl_program *
70 _mesa_new_program(struct gl_context *ctx, GLenum target, GLuint id);
71
72 extern void
73 _mesa_delete_program(struct gl_context *ctx, struct gl_program *prog);
74
75 extern struct gl_program *
76 _mesa_lookup_program(struct gl_context *ctx, GLuint id);
77
78 extern void
79 _mesa_reference_program_(struct gl_context *ctx,
80 struct gl_program **ptr,
81 struct gl_program *prog);
82
83 static inline void
84 _mesa_reference_program(struct gl_context *ctx,
85 struct gl_program **ptr,
86 struct gl_program *prog)
87 {
88 if (*ptr != prog)
89 _mesa_reference_program_(ctx, ptr, prog);
90 }
91
92 static inline void
93 _mesa_reference_vertprog(struct gl_context *ctx,
94 struct gl_vertex_program **ptr,
95 struct gl_vertex_program *prog)
96 {
97 _mesa_reference_program(ctx, (struct gl_program **) ptr,
98 (struct gl_program *) prog);
99 }
100
101 static inline void
102 _mesa_reference_fragprog(struct gl_context *ctx,
103 struct gl_fragment_program **ptr,
104 struct gl_fragment_program *prog)
105 {
106 _mesa_reference_program(ctx, (struct gl_program **) ptr,
107 (struct gl_program *) prog);
108 }
109
110 static inline void
111 _mesa_reference_compprog(struct gl_context *ctx,
112 struct gl_compute_program **ptr,
113 struct gl_compute_program *prog)
114 {
115 _mesa_reference_program(ctx, (struct gl_program **) ptr,
116 (struct gl_program *) prog);
117 }
118
119 extern GLboolean
120 _mesa_insert_instructions(struct gl_program *prog, GLuint start, GLuint count);
121
122 extern GLboolean
123 _mesa_delete_instructions(struct gl_program *prog, GLuint start, GLuint count);
124
125 extern void
126 _mesa_find_used_registers(const struct gl_program *prog,
127 gl_register_file file,
128 GLboolean used[], GLuint usedSize);
129
130 extern GLint
131 _mesa_find_free_register(const GLboolean used[],
132 GLuint maxRegs, GLuint firstReg);
133
134 extern GLint
135 _mesa_get_min_invocations_per_fragment(struct gl_context *ctx,
136 const struct gl_fragment_program *prog,
137 bool ignore_sample_qualifier);
138
139 static inline GLuint
140 _mesa_program_enum_to_shader_stage(GLenum v)
141 {
142 switch (v) {
143 case GL_VERTEX_PROGRAM_ARB:
144 return MESA_SHADER_VERTEX;
145 case GL_FRAGMENT_PROGRAM_ARB:
146 return MESA_SHADER_FRAGMENT;
147 case GL_FRAGMENT_SHADER_ATI:
148 return MESA_SHADER_FRAGMENT;
149 case GL_GEOMETRY_PROGRAM_NV:
150 return MESA_SHADER_GEOMETRY;
151 case GL_TESS_CONTROL_PROGRAM_NV:
152 return MESA_SHADER_TESS_CTRL;
153 case GL_TESS_EVALUATION_PROGRAM_NV:
154 return MESA_SHADER_TESS_EVAL;
155 case GL_COMPUTE_PROGRAM_NV:
156 return MESA_SHADER_COMPUTE;
157 default:
158 assert(0);
159 return ~0;
160 }
161 }
162
163
164 static inline GLenum
165 _mesa_shader_stage_to_program(unsigned stage)
166 {
167 switch (stage) {
168 case MESA_SHADER_VERTEX:
169 return GL_VERTEX_PROGRAM_ARB;
170 case MESA_SHADER_FRAGMENT:
171 return GL_FRAGMENT_PROGRAM_ARB;
172 case MESA_SHADER_GEOMETRY:
173 return GL_GEOMETRY_PROGRAM_NV;
174 case MESA_SHADER_TESS_CTRL:
175 return GL_TESS_CONTROL_PROGRAM_NV;
176 case MESA_SHADER_TESS_EVAL:
177 return GL_TESS_EVALUATION_PROGRAM_NV;
178 case MESA_SHADER_COMPUTE:
179 return GL_COMPUTE_PROGRAM_NV;
180 }
181
182 assert(!"Unexpected shader stage in _mesa_shader_stage_to_program");
183 return GL_VERTEX_PROGRAM_ARB;
184 }
185
186
187 /* Cast wrappers from gl_program to derived program types.
188 * (e.g. gl_vertex_program)
189 */
190
191 static inline struct gl_fragment_program *
192 gl_fragment_program(struct gl_program *prog)
193 {
194 return (struct gl_fragment_program *) prog;
195 }
196
197 static inline const struct gl_fragment_program *
198 gl_fragment_program_const(const struct gl_program *prog)
199 {
200 return (const struct gl_fragment_program *) prog;
201 }
202
203
204 static inline struct gl_vertex_program *
205 gl_vertex_program(struct gl_program *prog)
206 {
207 return (struct gl_vertex_program *) prog;
208 }
209
210 static inline const struct gl_vertex_program *
211 gl_vertex_program_const(const struct gl_program *prog)
212 {
213 return (const struct gl_vertex_program *) prog;
214 }
215
216 static inline struct gl_compute_program *
217 gl_compute_program(struct gl_program *prog)
218 {
219 return (struct gl_compute_program *) prog;
220 }
221
222 static inline const struct gl_compute_program *
223 gl_compute_program_const(const struct gl_program *prog)
224 {
225 return (const struct gl_compute_program *) prog;
226 }
227
228 #ifdef __cplusplus
229 } /* extern "C" */
230 #endif
231
232 #endif /* PROGRAM_H */