st/mesa: inline st_prepare_vertex_program
[mesa.git] / src / mesa / state_tracker / st_program.h
1 /**************************************************************************
2 *
3 * Copyright 2003 VMware, Inc.
4 * 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
8 * "Software"), to deal in the Software without restriction, including
9 * without limitation the rights to use, copy, modify, merge, publish,
10 * distribute, sub license, and/or sell copies of the Software, and to
11 * permit persons to whom the Software is furnished to do so, subject to
12 * the following conditions:
13 *
14 * The above copyright notice and this permission notice (including the
15 * next paragraph) shall be included in all copies or substantial portions
16 * of the Software.
17 *
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
19 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
21 * IN NO EVENT SHALL VMWARE AND/OR ITS SUPPLIERS BE LIABLE FOR
22 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
23 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
24 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25 *
26 **************************************************************************/
27
28 /*
29 * Authors:
30 * Keith Whitwell <keithw@vmware.com>
31 */
32
33
34 #ifndef ST_PROGRAM_H
35 #define ST_PROGRAM_H
36
37 #include "main/mtypes.h"
38 #include "program/program.h"
39 #include "pipe/p_state.h"
40 #include "st_context.h"
41 #include "st_glsl_to_tgsi.h"
42
43
44 #ifdef __cplusplus
45 extern "C" {
46 #endif
47
48 #define ST_DOUBLE_ATTRIB_PLACEHOLDER 0xffffffff
49
50 /** Fragment program variant key */
51 struct st_fp_variant_key
52 {
53 struct st_context *st; /**< variants are per-context */
54
55 /** for glBitmap */
56 GLuint bitmap:1; /**< glBitmap variant? */
57
58 /** for glDrawPixels */
59 GLuint drawpixels:1; /**< glDrawPixels variant */
60 GLuint scaleAndBias:1; /**< glDrawPixels w/ scale and/or bias? */
61 GLuint pixelMaps:1; /**< glDrawPixels w/ pixel lookup map? */
62 GLuint drawpixels_z:1; /**< glDrawPixels(GL_DEPTH) */
63 GLuint drawpixels_stencil:1; /**< glDrawPixels(GL_STENCIL) */
64
65 /** for ARB_color_buffer_float */
66 GLuint clamp_color:1;
67
68 /** for ARB_sample_shading */
69 GLuint persample_shading:1;
70 };
71
72
73 /**
74 * Variant of a fragment program.
75 */
76 struct st_fp_variant
77 {
78 /** Parameters which generated this version of fragment program */
79 struct st_fp_variant_key key;
80
81 struct pipe_shader_state tgsi;
82
83 /** Driver's compiled shader */
84 void *driver_shader;
85
86 /** For glBitmap variants */
87 struct gl_program_parameter_list *parameters;
88 uint bitmap_sampler;
89
90 /** next in linked list */
91 struct st_fp_variant *next;
92 };
93
94
95 /**
96 * Derived from Mesa gl_fragment_program:
97 */
98 struct st_fragment_program
99 {
100 struct gl_fragment_program Base;
101 struct glsl_to_tgsi_visitor* glsl_to_tgsi;
102
103 struct st_fp_variant *variants;
104 };
105
106
107
108 /** Vertex program variant key */
109 struct st_vp_variant_key
110 {
111 struct st_context *st; /**< variants are per-context */
112 boolean passthrough_edgeflags;
113
114 /** for ARB_color_buffer_float */
115 boolean clamp_color;
116 };
117
118
119 /**
120 * This represents a vertex program, especially translated to match
121 * the inputs of a particular fragment shader.
122 */
123 struct st_vp_variant
124 {
125 /* Parameters which generated this translated version of a vertex
126 * shader:
127 */
128 struct st_vp_variant_key key;
129
130 /**
131 * TGSI tokens (to later generate a 'draw' module shader for
132 * selection/feedback/rasterpos)
133 */
134 struct pipe_shader_state tgsi;
135
136 /** Driver's compiled shader */
137 void *driver_shader;
138
139 /** For using our private draw module (glRasterPos) */
140 struct draw_vertex_shader *draw_shader;
141
142 /** Next in linked list */
143 struct st_vp_variant *next;
144
145 /** similar to that in st_vertex_program, but with edgeflags info too */
146 GLuint num_inputs;
147 };
148
149
150 /**
151 * Derived from Mesa gl_fragment_program:
152 */
153 struct st_vertex_program
154 {
155 struct gl_vertex_program Base; /**< The Mesa vertex program */
156 struct glsl_to_tgsi_visitor* glsl_to_tgsi;
157
158 /** maps a Mesa VERT_ATTRIB_x to a packed TGSI input index */
159 GLuint input_to_index[VERT_ATTRIB_MAX];
160 /** maps a TGSI input index back to a Mesa VERT_ATTRIB_x */
161 GLuint index_to_input[PIPE_MAX_SHADER_INPUTS];
162 GLuint num_inputs;
163
164 /** Maps VARYING_SLOT_x to slot */
165 GLuint result_to_output[VARYING_SLOT_MAX];
166 GLuint output_slot_to_attr[VARYING_SLOT_MAX];
167 ubyte output_semantic_name[VARYING_SLOT_MAX];
168 ubyte output_semantic_index[VARYING_SLOT_MAX];
169 GLuint num_outputs;
170
171 /** List of translated variants of this vertex program.
172 */
173 struct st_vp_variant *variants;
174 };
175
176
177
178 /** Geometry program variant key */
179 struct st_gp_variant_key
180 {
181 struct st_context *st; /**< variants are per-context */
182 /* no other fields yet */
183 };
184
185
186 /**
187 * Geometry program variant.
188 */
189 struct st_gp_variant
190 {
191 /* Parameters which generated this variant. */
192 struct st_gp_variant_key key;
193
194 void *driver_shader;
195
196 struct st_gp_variant *next;
197 };
198
199
200 /**
201 * Derived from Mesa gl_geometry_program:
202 */
203 struct st_geometry_program
204 {
205 struct gl_geometry_program Base; /**< The Mesa geometry program */
206 struct glsl_to_tgsi_visitor* glsl_to_tgsi;
207
208 struct st_gp_variant *variants;
209 };
210
211
212
213 /** Tessellation control program variant key */
214 struct st_tcp_variant_key
215 {
216 struct st_context *st; /**< variants are per-context */
217 /* no other fields yet */
218 };
219
220
221 /**
222 * Tessellation control program variant.
223 */
224 struct st_tcp_variant
225 {
226 /* Parameters which generated this variant. */
227 struct st_tcp_variant_key key;
228
229 void *driver_shader;
230
231 struct st_tcp_variant *next;
232 };
233
234
235 /**
236 * Derived from Mesa gl_tess_ctrl_program:
237 */
238 struct st_tessctrl_program
239 {
240 struct gl_tess_ctrl_program Base; /**< The Mesa tess ctrl program */
241 struct glsl_to_tgsi_visitor* glsl_to_tgsi;
242
243 struct st_tcp_variant *variants;
244 };
245
246
247
248 /** Tessellation evaluation program variant key */
249 struct st_tep_variant_key
250 {
251 struct st_context *st; /**< variants are per-context */
252 /* no other fields yet */
253 };
254
255
256 /**
257 * Tessellation evaluation program variant.
258 */
259 struct st_tep_variant
260 {
261 /* Parameters which generated this variant. */
262 struct st_tep_variant_key key;
263
264 void *driver_shader;
265
266 struct st_tep_variant *next;
267 };
268
269
270 /**
271 * Derived from Mesa gl_tess_eval_program:
272 */
273 struct st_tesseval_program
274 {
275 struct gl_tess_eval_program Base; /**< The Mesa tess eval program */
276 struct glsl_to_tgsi_visitor* glsl_to_tgsi;
277
278 struct st_tep_variant *variants;
279 };
280
281
282
283 static inline struct st_fragment_program *
284 st_fragment_program( struct gl_fragment_program *fp )
285 {
286 return (struct st_fragment_program *)fp;
287 }
288
289
290 static inline struct st_vertex_program *
291 st_vertex_program( struct gl_vertex_program *vp )
292 {
293 return (struct st_vertex_program *)vp;
294 }
295
296 static inline struct st_geometry_program *
297 st_geometry_program( struct gl_geometry_program *gp )
298 {
299 return (struct st_geometry_program *)gp;
300 }
301
302 static inline struct st_tessctrl_program *
303 st_tessctrl_program( struct gl_tess_ctrl_program *tcp )
304 {
305 return (struct st_tessctrl_program *)tcp;
306 }
307
308 static inline struct st_tesseval_program *
309 st_tesseval_program( struct gl_tess_eval_program *tep )
310 {
311 return (struct st_tesseval_program *)tep;
312 }
313
314 static inline void
315 st_reference_vertprog(struct st_context *st,
316 struct st_vertex_program **ptr,
317 struct st_vertex_program *prog)
318 {
319 _mesa_reference_program(st->ctx,
320 (struct gl_program **) ptr,
321 (struct gl_program *) prog);
322 }
323
324 static inline void
325 st_reference_geomprog(struct st_context *st,
326 struct st_geometry_program **ptr,
327 struct st_geometry_program *prog)
328 {
329 _mesa_reference_program(st->ctx,
330 (struct gl_program **) ptr,
331 (struct gl_program *) prog);
332 }
333
334 static inline void
335 st_reference_fragprog(struct st_context *st,
336 struct st_fragment_program **ptr,
337 struct st_fragment_program *prog)
338 {
339 _mesa_reference_program(st->ctx,
340 (struct gl_program **) ptr,
341 (struct gl_program *) prog);
342 }
343
344 static inline void
345 st_reference_tesscprog(struct st_context *st,
346 struct st_tessctrl_program **ptr,
347 struct st_tessctrl_program *prog)
348 {
349 _mesa_reference_program(st->ctx,
350 (struct gl_program **) ptr,
351 (struct gl_program *) prog);
352 }
353
354 static inline void
355 st_reference_tesseprog(struct st_context *st,
356 struct st_tesseval_program **ptr,
357 struct st_tesseval_program *prog)
358 {
359 _mesa_reference_program(st->ctx,
360 (struct gl_program **) ptr,
361 (struct gl_program *) prog);
362 }
363
364 /**
365 * This defines mapping from Mesa VARYING_SLOTs to TGSI GENERIC slots.
366 */
367 static inline unsigned
368 st_get_generic_varying_index(struct st_context *st, GLuint attr)
369 {
370 if (attr >= VARYING_SLOT_VAR0) {
371 if (st->needs_texcoord_semantic)
372 return attr - VARYING_SLOT_VAR0;
373 else
374 return 9 + (attr - VARYING_SLOT_VAR0);
375 }
376 if (attr == VARYING_SLOT_PNTC) {
377 assert(!st->needs_texcoord_semantic);
378 return 8;
379 }
380 if (attr >= VARYING_SLOT_TEX0 && attr <= VARYING_SLOT_TEX7) {
381 assert(!st->needs_texcoord_semantic);
382 return attr - VARYING_SLOT_TEX0;
383 }
384
385 assert(0);
386 return 0;
387 }
388
389
390 extern struct st_vp_variant *
391 st_get_vp_variant(struct st_context *st,
392 struct st_vertex_program *stvp,
393 const struct st_vp_variant_key *key);
394
395
396 extern struct st_fp_variant *
397 st_get_fp_variant(struct st_context *st,
398 struct st_fragment_program *stfp,
399 const struct st_fp_variant_key *key);
400
401
402 extern struct st_gp_variant *
403 st_get_gp_variant(struct st_context *st,
404 struct st_geometry_program *stgp,
405 const struct st_gp_variant_key *key);
406
407 extern struct st_tcp_variant *
408 st_get_tcp_variant(struct st_context *st,
409 struct st_tessctrl_program *stgp,
410 const struct st_tcp_variant_key *key);
411
412 extern struct st_tep_variant *
413 st_get_tep_variant(struct st_context *st,
414 struct st_tesseval_program *stgp,
415 const struct st_tep_variant_key *key);
416
417 extern void
418 st_release_vp_variants( struct st_context *st,
419 struct st_vertex_program *stvp );
420
421 extern void
422 st_release_fp_variants( struct st_context *st,
423 struct st_fragment_program *stfp );
424
425 extern void
426 st_release_gp_variants(struct st_context *st,
427 struct st_geometry_program *stgp);
428
429 extern void
430 st_release_tcp_variants(struct st_context *st,
431 struct st_tessctrl_program *stgp);
432
433 extern void
434 st_release_tep_variants(struct st_context *st,
435 struct st_tesseval_program *stgp);
436
437 extern void
438 st_destroy_program_variants(struct st_context *st);
439
440
441 extern void
442 st_print_current_vertex_program(void);
443
444 extern void
445 st_precompile_shader_variant(struct st_context *st,
446 struct gl_program *prog);
447
448 #ifdef __cplusplus
449 }
450 #endif
451
452 #endif