blob: 1d91e63af501c60abf8b4dd703e7de2aeb9efeb8 [file] [log] [blame]
Michal Krol2861e732004-03-29 11:09:34 +00001/*
2 * Mesa 3-D graphics library
Brian Paul4d12a052006-08-23 23:10:14 +00003 * Version: 6.5.1
Michal Krol2861e732004-03-29 11:09:34 +00004 *
Brian Paul0c1cbd52006-05-24 03:01:58 +00005 * Copyright (C) 1999-2006 Brian Paul All Rights Reserved.
Michal Krol2861e732004-03-29 11:09:34 +00006 *
7 * Permission is hereby granted, free of charge, to any person obtaining a
8 * copy of this software and associated documentation files (the "Software"),
9 * to deal in the Software without restriction, including without limitation
10 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
11 * and/or sell copies of the Software, and to permit persons to whom the
12 * Software is furnished to do so, subject to the following conditions:
13 *
14 * The above copyright notice and this permission notice shall be included
15 * in all copies or substantial portions of the Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
18 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
21 * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
22 * CONNECTION WITH THE SOFTWARE OR THE USE OR 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
Brian Paul253204f2004-09-10 00:45:12 +000032/**
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
Michal Krol2861e732004-03-29 11:09:34 +000040#ifndef PROGRAM_H
41#define PROGRAM_H
42
43#include "mtypes.h"
44
45
46/* for GL_ARB_v_p and GL_ARB_f_p SWZ instruction */
47#define SWIZZLE_X 0
48#define SWIZZLE_Y 1
49#define SWIZZLE_Z 2
50#define SWIZZLE_W 3
51#define SWIZZLE_ZERO 4 /* keep these values together: KW */
52#define SWIZZLE_ONE 5 /* keep these values together: KW */
53
Keith Whitwell7c26b612005-04-21 14:46:57 +000054#define MAKE_SWIZZLE4(a,b,c,d) (((a)<<0) | ((b)<<3) | ((c)<<6) | ((d)<<9))
Keith Whitwell7c26b612005-04-21 14:46:57 +000055#define SWIZZLE_NOOP MAKE_SWIZZLE4(0,1,2,3)
56#define GET_SWZ(swz, idx) (((swz) >> ((idx)*3)) & 0x7)
57#define GET_BIT(msk, idx) (((msk) >> (idx)) & 0x1)
58
59
60#define WRITEMASK_X 0x1
61#define WRITEMASK_Y 0x2
62#define WRITEMASK_XY 0x3
63#define WRITEMASK_Z 0x4
64#define WRITEMASK_XZ 0x5
65#define WRITEMASK_YZ 0x6
66#define WRITEMASK_XYZ 0x7
67#define WRITEMASK_W 0x8
68#define WRITEMASK_XW 0x9
69#define WRITEMASK_YW 0xa
70#define WRITEMASK_XYW 0xb
71#define WRITEMASK_ZW 0xc
72#define WRITEMASK_XZW 0xd
73#define WRITEMASK_YZW 0xe
74#define WRITEMASK_XYZW 0xf
75
Michal Krol2861e732004-03-29 11:09:34 +000076
Brian Paul122629f2006-07-20 16:49:57 +000077extern struct gl_program _mesa_DummyProgram;
Brian Paul9ca83922004-10-02 15:16:59 +000078
79
Michal Krol2861e732004-03-29 11:09:34 +000080/*
81 * Internal functions
82 */
83
84extern void
85_mesa_init_program(GLcontext *ctx);
86
87extern void
Brian Paul21841f02004-08-14 14:28:11 +000088_mesa_free_program_data(GLcontext *ctx);
89
90extern void
Michal Krol2861e732004-03-29 11:09:34 +000091_mesa_set_program_error(GLcontext *ctx, GLint pos, const char *string);
92
93extern const GLubyte *
94_mesa_find_line_column(const GLubyte *string, const GLubyte *pos,
95 GLint *line, GLint *col);
96
97
Brian Paul122629f2006-07-20 16:49:57 +000098extern struct gl_program *
Brian Paulcdb65412005-01-11 15:56:47 +000099_mesa_init_vertex_program(GLcontext *ctx,
Brian Paul122629f2006-07-20 16:49:57 +0000100 struct gl_vertex_program *prog,
Brian Paulcdb65412005-01-11 15:56:47 +0000101 GLenum target, GLuint id);
Michal Krol2861e732004-03-29 11:09:34 +0000102
Brian Paul122629f2006-07-20 16:49:57 +0000103extern struct gl_program *
Brian Paulcdb65412005-01-11 15:56:47 +0000104_mesa_init_fragment_program(GLcontext *ctx,
Brian Paul122629f2006-07-20 16:49:57 +0000105 struct gl_fragment_program *prog,
Brian Paulcdb65412005-01-11 15:56:47 +0000106 GLenum target, GLuint id);
107
Brian Paul122629f2006-07-20 16:49:57 +0000108extern struct gl_program *
Michal Krol2861e732004-03-29 11:09:34 +0000109_mesa_new_program(GLcontext *ctx, GLenum target, GLuint id);
110
111extern void
Brian Paul122629f2006-07-20 16:49:57 +0000112_mesa_delete_program(GLcontext *ctx, struct gl_program *prog);
Michal Krol2861e732004-03-29 11:09:34 +0000113
Brian Paul4d12a052006-08-23 23:10:14 +0000114extern struct gl_program *
115_mesa_lookup_program(GLcontext *ctx, GLuint id);
Michal Krol2861e732004-03-29 11:09:34 +0000116
117
Brian Paulfd4395b2005-11-05 03:02:28 +0000118/**
Michal Krol2861e732004-03-29 11:09:34 +0000119 * Used for describing GL state referenced from inside ARB vertex and
120 * fragment programs.
121 * A string such as "state.light[0].ambient" gets translated into a
122 * sequence of tokens such as [ STATE_LIGHT, 0, STATE_AMBIENT ].
123 */
124enum state_index {
125 STATE_MATERIAL,
126
127 STATE_LIGHT,
128 STATE_LIGHTMODEL_AMBIENT,
129 STATE_LIGHTMODEL_SCENECOLOR,
130 STATE_LIGHTPROD,
131
132 STATE_TEXGEN,
133
134 STATE_FOG_COLOR,
135 STATE_FOG_PARAMS,
136
137 STATE_CLIPPLANE,
138
139 STATE_POINT_SIZE,
140 STATE_POINT_ATTENUATION,
141
142 STATE_MATRIX,
143 STATE_MODELVIEW,
144 STATE_PROJECTION,
145 STATE_MVP,
146 STATE_TEXTURE,
147 STATE_PROGRAM,
148 STATE_MATRIX_INVERSE,
149 STATE_MATRIX_TRANSPOSE,
150 STATE_MATRIX_INVTRANS,
151
152 STATE_AMBIENT,
153 STATE_DIFFUSE,
154 STATE_SPECULAR,
155 STATE_EMISSION,
156 STATE_SHININESS,
157 STATE_HALF,
158
159 STATE_POSITION,
160 STATE_ATTENUATION,
161 STATE_SPOT_DIRECTION,
162
163 STATE_TEXGEN_EYE_S,
164 STATE_TEXGEN_EYE_T,
165 STATE_TEXGEN_EYE_R,
166 STATE_TEXGEN_EYE_Q,
167 STATE_TEXGEN_OBJECT_S,
168 STATE_TEXGEN_OBJECT_T,
169 STATE_TEXGEN_OBJECT_R,
170 STATE_TEXGEN_OBJECT_Q,
171
172 STATE_TEXENV_COLOR,
173
174 STATE_DEPTH_RANGE,
175
176 STATE_VERTEX_PROGRAM,
177 STATE_FRAGMENT_PROGRAM,
178
179 STATE_ENV,
Keith Whitwell7c26b612005-04-21 14:46:57 +0000180 STATE_LOCAL,
181
182 STATE_INTERNAL, /* Mesa additions */
183 STATE_NORMAL_SCALE,
Brian Paulfd4395b2005-11-05 03:02:28 +0000184 STATE_POSITION_NORMALIZED /* normalized light position */
Michal Krol2861e732004-03-29 11:09:34 +0000185};
186
187
188
Brian Paul613e1ad2005-11-05 02:15:21 +0000189/**
Michal Krol2861e732004-03-29 11:09:34 +0000190 * Named program parameters
191 * Used for NV_fragment_program "DEFINE"d constants and "DECLARE"d parameters,
192 * and ARB_fragment_program global state references. For the later, Name
193 * might be "state.light[0].diffuse", for example.
194 */
Brian Paul122629f2006-07-20 16:49:57 +0000195struct gl_program_parameter
Michal Krol2861e732004-03-29 11:09:34 +0000196{
Brian Paul0c1cbd52006-05-24 03:01:58 +0000197 const char *Name; /**< Null-terminated string */
198 enum register_file Type; /**< PROGRAM_NAMED_PARAM, CONSTANT or STATE_VAR */
199 enum state_index StateIndexes[6]; /**< Global state reference */
Michal Krol2861e732004-03-29 11:09:34 +0000200};
201
202
Brian Paul0c1cbd52006-05-24 03:01:58 +0000203/**
204 * A list of the above program_parameter instances.
205 */
Brian Paul122629f2006-07-20 16:49:57 +0000206struct gl_program_parameter_list
Michal Krol2861e732004-03-29 11:09:34 +0000207{
Brian Paul0c1cbd52006-05-24 03:01:58 +0000208 GLuint Size; /**< allocated size of Parameters, ParameterValues */
209 GLuint NumParameters; /**< number of parameters in arrays */
Brian Paul122629f2006-07-20 16:49:57 +0000210 struct gl_program_parameter *Parameters; /**< Array [Size] */
Brian Paul0c1cbd52006-05-24 03:01:58 +0000211 GLfloat (*ParameterValues)[4]; /**< Array [Size] of GLfloat[4] */
212 GLbitfield StateFlags; /**< _NEW_* flags indicating which state changes
213 might invalidate ParameterValues[] */
Michal Krol2861e732004-03-29 11:09:34 +0000214};
215
216
217/*
218 * Program parameter functions
219 */
220
Brian Paul122629f2006-07-20 16:49:57 +0000221extern struct gl_program_parameter_list *
Michal Krol2861e732004-03-29 11:09:34 +0000222_mesa_new_parameter_list(void);
223
224extern void
Brian Paul122629f2006-07-20 16:49:57 +0000225_mesa_free_parameter_list(struct gl_program_parameter_list *paramList);
Michal Krol2861e732004-03-29 11:09:34 +0000226
Michal Krol2861e732004-03-29 11:09:34 +0000227extern GLint
Brian Paul122629f2006-07-20 16:49:57 +0000228_mesa_add_named_parameter(struct gl_program_parameter_list *paramList,
Michal Krol2861e732004-03-29 11:09:34 +0000229 const char *name, const GLfloat values[4]);
230
231extern GLint
Brian Paul122629f2006-07-20 16:49:57 +0000232_mesa_add_named_constant(struct gl_program_parameter_list *paramList,
Michal Krol2861e732004-03-29 11:09:34 +0000233 const char *name, const GLfloat values[4]);
234
235extern GLint
Brian Paul122629f2006-07-20 16:49:57 +0000236_mesa_add_unnamed_constant(struct gl_program_parameter_list *paramList,
Michal Krol2861e732004-03-29 11:09:34 +0000237 const GLfloat values[4]);
238
239extern GLint
Brian Paul122629f2006-07-20 16:49:57 +0000240_mesa_add_state_reference(struct gl_program_parameter_list *paramList,
Brian Paul16241622005-11-03 02:26:47 +0000241 const GLint *stateTokens);
Michal Krol2861e732004-03-29 11:09:34 +0000242
243extern GLfloat *
Brian Paul122629f2006-07-20 16:49:57 +0000244_mesa_lookup_parameter_value(struct gl_program_parameter_list *paramList,
Michal Krol2861e732004-03-29 11:09:34 +0000245 GLsizei nameLen, const char *name);
246
247extern GLint
Brian Paul122629f2006-07-20 16:49:57 +0000248_mesa_lookup_parameter_index(struct gl_program_parameter_list *paramList,
Michal Krol2861e732004-03-29 11:09:34 +0000249 GLsizei nameLen, const char *name);
250
251extern void
252_mesa_load_state_parameters(GLcontext *ctx,
Brian Paul122629f2006-07-20 16:49:57 +0000253 struct gl_program_parameter_list *paramList);
Michal Krol2861e732004-03-29 11:09:34 +0000254
255
Brian Paul30d6a4b2005-11-05 20:18:18 +0000256
257extern void
Brian Paulde997602005-11-12 17:53:14 +0000258_mesa_print_instruction(const struct prog_instruction *inst);
259
260extern void
Brian Paul122629f2006-07-20 16:49:57 +0000261_mesa_print_program(const struct gl_program *prog);
Brian Paulde997602005-11-12 17:53:14 +0000262
263extern void
Brian Paul122629f2006-07-20 16:49:57 +0000264_mesa_print_program_parameters(GLcontext *ctx, const struct gl_program *prog);
Brian Paul30d6a4b2005-11-05 20:18:18 +0000265
266
Michal Krol2861e732004-03-29 11:09:34 +0000267/*
Brian Paulfd4395b2005-11-05 03:02:28 +0000268 * API functions common to ARB/NV_vertex/fragment_program
Michal Krol2861e732004-03-29 11:09:34 +0000269 */
270
271extern void GLAPIENTRY
272_mesa_BindProgram(GLenum target, GLuint id);
273
274extern void GLAPIENTRY
275_mesa_DeletePrograms(GLsizei n, const GLuint *ids);
276
277extern void GLAPIENTRY
278_mesa_GenPrograms(GLsizei n, GLuint *ids);
279
280extern GLboolean GLAPIENTRY
281_mesa_IsProgram(GLuint id);
282
283
284
285/*
286 * GL_MESA_program_debug
287 */
288
289extern void
290_mesa_ProgramCallbackMESA(GLenum target, GLprogramcallbackMESA callback,
291 GLvoid *data);
292
293extern void
294_mesa_GetProgramRegisterfvMESA(GLenum target, GLsizei len,
295 const GLubyte *registerName, GLfloat *v);
296
297
298#endif /* PROGRAM_H */