blob: a45bc50371e92bcacc0b6f4d3d5eabfd56ac7f09 [file] [log] [blame]
Michal Krol2861e732004-03-29 11:09:34 +00001/*
2 * Mesa 3-D graphics library
Brian Paul765f1a12004-09-14 22:28:27 +00003 * Version: 6.2
Michal Krol2861e732004-03-29 11:09:34 +00004 *
5 * Copyright (C) 1999-2004 Brian Paul All Rights Reserved.
6 *
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
32#include "glheader.h"
33#include "context.h"
34#include "hash.h"
35#include "imports.h"
36#include "macros.h"
37#include "mtypes.h"
38#include "program.h"
39#include "nvfragparse.h"
40#include "nvfragprog.h"
41#include "nvvertparse.h"
Brian Paul575700f2004-12-16 03:07:18 +000042#include "nvvertprog.h"
Michal Krol2861e732004-03-29 11:09:34 +000043
44
45/**********************************************************************/
46/* Utility functions */
47/**********************************************************************/
48
49
Brian Paul765f1a12004-09-14 22:28:27 +000050/* A pointer to this dummy program is put into the hash table when
51 * glGenPrograms is called.
52 */
Brian Paul9ca83922004-10-02 15:16:59 +000053struct program _mesa_DummyProgram;
Brian Paul765f1a12004-09-14 22:28:27 +000054
55
Michal Krol2861e732004-03-29 11:09:34 +000056/**
Brian Paul21841f02004-08-14 14:28:11 +000057 * Init context's vertex/fragment program state
Michal Krol2861e732004-03-29 11:09:34 +000058 */
59void
60_mesa_init_program(GLcontext *ctx)
61{
62 GLuint i;
63
64 ctx->Program.ErrorPos = -1;
65 ctx->Program.ErrorString = _mesa_strdup("");
66
67#if FEATURE_NV_vertex_program || FEATURE_ARB_vertex_program
68 ctx->VertexProgram.Enabled = GL_FALSE;
69 ctx->VertexProgram.PointSizeEnabled = GL_FALSE;
70 ctx->VertexProgram.TwoSideEnabled = GL_FALSE;
Michal Krol2861e732004-03-29 11:09:34 +000071 ctx->VertexProgram.Current = (struct vertex_program *) ctx->Shared->DefaultVertexProgram;
72 assert(ctx->VertexProgram.Current);
73 ctx->VertexProgram.Current->Base.RefCount++;
74 for (i = 0; i < MAX_NV_VERTEX_PROGRAM_PARAMS / 4; i++) {
75 ctx->VertexProgram.TrackMatrix[i] = GL_NONE;
76 ctx->VertexProgram.TrackMatrixTransform[i] = GL_IDENTITY_NV;
77 }
78#endif
79
80#if FEATURE_NV_fragment_program || FEATURE_ARB_fragment_program
81 ctx->FragmentProgram.Enabled = GL_FALSE;
82 ctx->FragmentProgram.Current = (struct fragment_program *) ctx->Shared->DefaultFragmentProgram;
83 assert(ctx->FragmentProgram.Current);
84 ctx->FragmentProgram.Current->Base.RefCount++;
85#endif
Dave Airlie7f752fe2004-12-19 03:06:59 +000086
87#if FEATURE_ATI_fragment_shader
88 ctx->ATIFragmentShader.Enabled = GL_FALSE;
89 ctx->ATIFragmentShader.Current = (struct ati_fragment_shader *) ctx->Shared->DefaultFragmentShader;
90 assert(ctx->ATIFragmentShader.Current);
91 ctx->ATIFragmentShader.Current->Base.RefCount++;
92#endif
Michal Krol2861e732004-03-29 11:09:34 +000093}
94
95
96/**
Brian Paul21841f02004-08-14 14:28:11 +000097 * Free a context's vertex/fragment program state
98 */
99void
100_mesa_free_program_data(GLcontext *ctx)
101{
102#if FEATURE_NV_vertex_program
103 if (ctx->VertexProgram.Current) {
104 ctx->VertexProgram.Current->Base.RefCount--;
105 if (ctx->VertexProgram.Current->Base.RefCount <= 0)
106 ctx->Driver.DeleteProgram(ctx, &(ctx->VertexProgram.Current->Base));
107 }
108#endif
109#if FEATURE_NV_fragment_program
110 if (ctx->FragmentProgram.Current) {
111 ctx->FragmentProgram.Current->Base.RefCount--;
112 if (ctx->FragmentProgram.Current->Base.RefCount <= 0)
113 ctx->Driver.DeleteProgram(ctx, &(ctx->FragmentProgram.Current->Base));
114 }
115#endif
Dave Airlie7f752fe2004-12-19 03:06:59 +0000116#if FEATURE_ATI_fragment_shader
117 if (ctx->ATIFragmentShader.Current) {
118 ctx->ATIFragmentShader.Current->Base.RefCount--;
119 if (ctx->ATIFragmentShader.Current->Base.RefCount <= 0)
120 ctx->Driver.DeleteProgram(ctx, &(ctx->ATIFragmentShader.Current->Base));
121 }
122#endif
Brian Paul21841f02004-08-14 14:28:11 +0000123 _mesa_free((void *) ctx->Program.ErrorString);
124}
125
126
127
128
129/**
Michal Krol2861e732004-03-29 11:09:34 +0000130 * Set the vertex/fragment program error state (position and error string).
131 * This is generally called from within the parsers.
132 */
133void
134_mesa_set_program_error(GLcontext *ctx, GLint pos, const char *string)
135{
136 ctx->Program.ErrorPos = pos;
137 _mesa_free((void *) ctx->Program.ErrorString);
138 if (!string)
139 string = "";
140 ctx->Program.ErrorString = _mesa_strdup(string);
141}
142
143
144/**
145 * Find the line number and column for 'pos' within 'string'.
146 * Return a copy of the line which contains 'pos'. Free the line with
147 * _mesa_free().
148 * \param string the program string
149 * \param pos the position within the string
150 * \param line returns the line number corresponding to 'pos'.
151 * \param col returns the column number corresponding to 'pos'.
152 * \return copy of the line containing 'pos'.
153 */
154const GLubyte *
155_mesa_find_line_column(const GLubyte *string, const GLubyte *pos,
156 GLint *line, GLint *col)
157{
158 const GLubyte *lineStart = string;
159 const GLubyte *p = string;
160 GLubyte *s;
161 int len;
162
163 *line = 1;
164
165 while (p != pos) {
166 if (*p == (GLubyte) '\n') {
167 (*line)++;
168 lineStart = p + 1;
169 }
170 p++;
171 }
172
173 *col = (pos - lineStart) + 1;
174
175 /* return copy of this line */
176 while (*p != 0 && *p != '\n')
177 p++;
178 len = p - lineStart;
179 s = (GLubyte *) _mesa_malloc(len + 1);
180 _mesa_memcpy(s, lineStart, len);
181 s[len] = 0;
182
183 return s;
184}
185
186
Brian Paul765f1a12004-09-14 22:28:27 +0000187/**
188 * Initialize a new vertex/fragment program object.
189 */
190static struct program *
191_mesa_init_program_struct( GLcontext *ctx, struct program *prog,
192 GLenum target, GLuint id)
Michal Krol2861e732004-03-29 11:09:34 +0000193{
Brian Paula6c423d2004-08-25 15:59:48 +0000194 (void) ctx;
Michal Krol2861e732004-03-29 11:09:34 +0000195 if (prog) {
196 prog->Id = id;
197 prog->Target = target;
198 prog->Resident = GL_TRUE;
199 prog->RefCount = 1;
200 }
201
202 return prog;
203}
204
Brian Paul765f1a12004-09-14 22:28:27 +0000205
206/**
207 * Initialize a new fragment program object.
208 */
209struct program *
210_mesa_init_fragment_program( GLcontext *ctx, struct fragment_program *prog,
211 GLenum target, GLuint id)
Michal Krol2861e732004-03-29 11:09:34 +0000212{
213 if (prog)
214 return _mesa_init_program_struct( ctx, &prog->Base, target, id );
215 else
216 return NULL;
217}
218
Brian Paul765f1a12004-09-14 22:28:27 +0000219
220/**
221 * Initialize a new vertex program object.
222 */
223struct program *
224_mesa_init_vertex_program( GLcontext *ctx, struct vertex_program *prog,
225 GLenum target, GLuint id)
Michal Krol2861e732004-03-29 11:09:34 +0000226{
227 if (prog)
228 return _mesa_init_program_struct( ctx, &prog->Base, target, id );
229 else
230 return NULL;
231}
232
Dave Airlie7f752fe2004-12-19 03:06:59 +0000233/**
234 * Initialize a new ATI fragment shader object.
235 */
236struct program *
Brian Paulcdb65412005-01-11 15:56:47 +0000237_mesa_init_ati_fragment_shader( GLcontext *ctx,
238 struct ati_fragment_shader *prog,
239 GLenum target, GLuint id )
Dave Airlie7f752fe2004-12-19 03:06:59 +0000240{
241 if (prog)
242 return _mesa_init_program_struct( ctx, &prog->Base, target, id );
243 else
244 return NULL;
245}
246
247
Michal Krol2861e732004-03-29 11:09:34 +0000248
249/**
250 * Allocate and initialize a new fragment/vertex program object but
251 * don't put it into the program hash table. Called via
252 * ctx->Driver.NewProgram. May be overridden (ie. replaced) by a
253 * device driver function to implement OO deriviation with additional
254 * types not understood by this function.
255 *
256 * \param ctx context
257 * \param id program id/number
258 * \param target program target/type
259 * \return pointer to new program object
260 */
261struct program *
262_mesa_new_program(GLcontext *ctx, GLenum target, GLuint id)
263{
264 switch (target) {
265 case GL_VERTEX_PROGRAM_ARB: /* == GL_VERTEX_PROGRAM_NV */
266 return _mesa_init_vertex_program( ctx, CALLOC_STRUCT(vertex_program),
267 target, id );
Michal Krol2861e732004-03-29 11:09:34 +0000268 case GL_FRAGMENT_PROGRAM_NV:
269 case GL_FRAGMENT_PROGRAM_ARB:
270 return _mesa_init_fragment_program( ctx, CALLOC_STRUCT(fragment_program),
271 target, id );
Dave Airlie7f752fe2004-12-19 03:06:59 +0000272 case GL_FRAGMENT_SHADER_ATI:
273 return _mesa_init_ati_fragment_shader( ctx, CALLOC_STRUCT(ati_fragment_shader),
274 target, id );
275
Michal Krol2861e732004-03-29 11:09:34 +0000276 default:
277 _mesa_problem(ctx, "bad target in _mesa_new_program");
278 return NULL;
279 }
280}
281
282
283/**
284 * Delete a program and remove it from the hash table, ignoring the
285 * reference count.
286 * Called via ctx->Driver.DeleteProgram. May be wrapped (OO deriviation)
287 * by a device driver function.
288 */
289void
290_mesa_delete_program(GLcontext *ctx, struct program *prog)
291{
Brian Paula6c423d2004-08-25 15:59:48 +0000292 (void) ctx;
Michal Krol2861e732004-03-29 11:09:34 +0000293 ASSERT(prog);
294
295 if (prog->String)
296 _mesa_free(prog->String);
297 if (prog->Target == GL_VERTEX_PROGRAM_NV ||
298 prog->Target == GL_VERTEX_STATE_PROGRAM_NV) {
299 struct vertex_program *vprog = (struct vertex_program *) prog;
Brian Paul575700f2004-12-16 03:07:18 +0000300 if (vprog->Instructions) {
301 GLuint i;
302 for (i = 0; i < vprog->Base.NumInstructions; i++) {
303 if (vprog->Instructions[i].Data)
304 _mesa_free(vprog->Instructions[i].Data);
305 }
Michal Krol2861e732004-03-29 11:09:34 +0000306 _mesa_free(vprog->Instructions);
Brian Paul575700f2004-12-16 03:07:18 +0000307 }
Brian Paul21841f02004-08-14 14:28:11 +0000308 if (vprog->Parameters)
309 _mesa_free_parameter_list(vprog->Parameters);
Michal Krol2861e732004-03-29 11:09:34 +0000310 }
311 else if (prog->Target == GL_FRAGMENT_PROGRAM_NV ||
312 prog->Target == GL_FRAGMENT_PROGRAM_ARB) {
313 struct fragment_program *fprog = (struct fragment_program *) prog;
Brian Paul2a5afe32004-12-18 16:18:00 +0000314 if (fprog->Instructions) {
315 GLuint i;
316 for (i = 0; i < fprog->Base.NumInstructions; i++) {
317 if (fprog->Instructions[i].Data)
318 _mesa_free(fprog->Instructions[i].Data);
319 }
Michal Krol2861e732004-03-29 11:09:34 +0000320 _mesa_free(fprog->Instructions);
Brian Paul2a5afe32004-12-18 16:18:00 +0000321 }
Brian Paul21841f02004-08-14 14:28:11 +0000322 if (fprog->Parameters)
Michal Krol2861e732004-03-29 11:09:34 +0000323 _mesa_free_parameter_list(fprog->Parameters);
Michal Krol2861e732004-03-29 11:09:34 +0000324 }
Dave Airlie7f752fe2004-12-19 03:06:59 +0000325 else if (prog->Target == GL_FRAGMENT_SHADER_ATI) {
326 struct ati_fragment_shader *atifs = (struct ati_fragment_shader *)prog;
327 if (atifs->Instructions)
328 _mesa_free(atifs->Instructions);
329 }
330
Michal Krol2861e732004-03-29 11:09:34 +0000331 _mesa_free(prog);
332}
333
334
335
336/**********************************************************************/
337/* Program parameter functions */
338/**********************************************************************/
339
340struct program_parameter_list *
341_mesa_new_parameter_list(void)
342{
343 return (struct program_parameter_list *)
344 _mesa_calloc(sizeof(struct program_parameter_list));
345}
346
347
348/**
349 * Free a parameter list and all its parameters
350 */
351void
352_mesa_free_parameter_list(struct program_parameter_list *paramList)
353{
354 _mesa_free_parameters(paramList);
355 _mesa_free(paramList);
356}
357
358
359/**
360 * Free all the parameters in the given list, but don't free the
361 * paramList structure itself.
362 */
363void
364_mesa_free_parameters(struct program_parameter_list *paramList)
365{
366 GLuint i;
367 for (i = 0; i < paramList->NumParameters; i++) {
368 _mesa_free((void *) paramList->Parameters[i].Name);
369 }
370 _mesa_free(paramList->Parameters);
371 paramList->NumParameters = 0;
372 paramList->Parameters = NULL;
373}
374
375
376/**
377 * Helper function used by the functions below.
378 */
379static GLint
380add_parameter(struct program_parameter_list *paramList,
381 const char *name, const GLfloat values[4],
382 enum parameter_type type)
383{
384 const GLuint n = paramList->NumParameters;
385
386 paramList->Parameters = (struct program_parameter *)
387 _mesa_realloc(paramList->Parameters,
388 n * sizeof(struct program_parameter),
389 (n + 1) * sizeof(struct program_parameter));
390 if (!paramList->Parameters) {
391 /* out of memory */
392 paramList->NumParameters = 0;
393 return -1;
394 }
395 else {
396 paramList->NumParameters = n + 1;
397 paramList->Parameters[n].Name = _mesa_strdup(name);
398 paramList->Parameters[n].Type = type;
399 if (values)
400 COPY_4V(paramList->Parameters[n].Values, values);
401 return (GLint) n;
402 }
403}
404
405
406/**
407 * Add a new named program parameter (Ex: NV_fragment_program DEFINE statement)
408 * \return index of the new entry in the parameter list
409 */
410GLint
411_mesa_add_named_parameter(struct program_parameter_list *paramList,
412 const char *name, const GLfloat values[4])
413{
414 return add_parameter(paramList, name, values, NAMED_PARAMETER);
415}
416
417
418/**
419 * Add a new unnamed constant to the parameter list.
420 * \param paramList - the parameter list
421 * \param values - four float values
422 * \return index of the new parameter.
423 */
424GLint
425_mesa_add_named_constant(struct program_parameter_list *paramList,
426 const char *name, const GLfloat values[4])
427{
428 return add_parameter(paramList, name, values, CONSTANT);
429}
430
431
432/**
433 * Add a new unnamed constant to the parameter list.
434 * \param paramList - the parameter list
435 * \param values - four float values
436 * \return index of the new parameter.
437 */
438GLint
439_mesa_add_unnamed_constant(struct program_parameter_list *paramList,
440 const GLfloat values[4])
441{
442 /* generate a new dummy name */
443 static GLuint n = 0;
444 char name[20];
445 _mesa_sprintf(name, "constant%d", n);
446 n++;
447 /* store it */
448 return add_parameter(paramList, name, values, CONSTANT);
449}
450
451
452/**
453 * Add a new state reference to the parameter list.
454 * \param paramList - the parameter list
455 * \param state - an array of 6 state tokens
456 *
457 * \return index of the new parameter.
458 */
459GLint
460_mesa_add_state_reference(struct program_parameter_list *paramList,
461 GLint *stateTokens)
462{
463 /* XXX Should we parse <stateString> here and produce the parameter's
464 * list of STATE_* tokens here, or in the parser?
465 */
466 GLint a, idx;
467
468 idx = add_parameter(paramList, "Some State", NULL, STATE);
469
470 for (a=0; a<6; a++)
471 paramList->Parameters[idx].StateIndexes[a] = (enum state_index) stateTokens[a];
472
473 return idx;
474}
475
476
477/**
478 * Lookup a parameter value by name in the given parameter list.
479 * \return pointer to the float[4] values.
480 */
481GLfloat *
482_mesa_lookup_parameter_value(struct program_parameter_list *paramList,
483 GLsizei nameLen, const char *name)
484{
485 GLuint i;
486
487 if (!paramList)
488 return NULL;
489
490 if (nameLen == -1) {
491 /* name is null-terminated */
492 for (i = 0; i < paramList->NumParameters; i++) {
493 if (_mesa_strcmp(paramList->Parameters[i].Name, name) == 0)
494 return paramList->Parameters[i].Values;
495 }
496 }
497 else {
498 /* name is not null-terminated, use nameLen */
499 for (i = 0; i < paramList->NumParameters; i++) {
500 if (_mesa_strncmp(paramList->Parameters[i].Name, name, nameLen) == 0
501 && _mesa_strlen(paramList->Parameters[i].Name) == (size_t)nameLen)
502 return paramList->Parameters[i].Values;
503 }
504 }
505 return NULL;
506}
507
508
509/**
510 * Lookup a parameter index by name in the given parameter list.
511 * \return index of parameter in the list.
512 */
513GLint
514_mesa_lookup_parameter_index(struct program_parameter_list *paramList,
515 GLsizei nameLen, const char *name)
516{
517 GLint i;
518
519 if (!paramList)
520 return -1;
521
522 if (nameLen == -1) {
523 /* name is null-terminated */
524 for (i = 0; i < (GLint) paramList->NumParameters; i++) {
525 if (_mesa_strcmp(paramList->Parameters[i].Name, name) == 0)
526 return i;
527 }
528 }
529 else {
530 /* name is not null-terminated, use nameLen */
531 for (i = 0; i < (GLint) paramList->NumParameters; i++) {
532 if (_mesa_strncmp(paramList->Parameters[i].Name, name, nameLen) == 0
533 && _mesa_strlen(paramList->Parameters[i].Name) == (size_t)nameLen)
534 return i;
535 }
536 }
537 return -1;
538}
539
540
541/**
542 * Use the list of tokens in the state[] array to find global GL state
543 * and return it in <value>. Usually, four values are returned in <value>
544 * but matrix queries may return as many as 16 values.
545 * This function is used for ARB vertex/fragment programs.
546 * The program parser will produce the state[] values.
547 */
548static void
549_mesa_fetch_state(GLcontext *ctx, const enum state_index state[],
550 GLfloat *value)
551{
552 switch (state[0]) {
553 case STATE_MATERIAL:
554 {
555 /* state[1] is either 0=front or 1=back side */
556 const GLuint face = (GLuint) state[1];
557 /* state[2] is the material attribute */
558 switch (state[2]) {
559 case STATE_AMBIENT:
560 if (face == 0)
561 COPY_4V(value, ctx->Light.Material.Attrib[MAT_ATTRIB_FRONT_AMBIENT]);
562 else
563 COPY_4V(value, ctx->Light.Material.Attrib[MAT_ATTRIB_BACK_AMBIENT]);
564 return;
565 case STATE_DIFFUSE:
566 if (face == 0)
567 COPY_4V(value, ctx->Light.Material.Attrib[MAT_ATTRIB_FRONT_DIFFUSE]);
568 else
569 COPY_4V(value, ctx->Light.Material.Attrib[MAT_ATTRIB_BACK_DIFFUSE]);
570 return;
571 case STATE_SPECULAR:
572 if (face == 0)
573 COPY_4V(value, ctx->Light.Material.Attrib[MAT_ATTRIB_FRONT_SPECULAR]);
574 else
575 COPY_4V(value, ctx->Light.Material.Attrib[MAT_ATTRIB_BACK_SPECULAR]);
576 return;
577 case STATE_EMISSION:
578 if (face == 0)
579 COPY_4V(value, ctx->Light.Material.Attrib[MAT_ATTRIB_FRONT_EMISSION]);
580 else
581 COPY_4V(value, ctx->Light.Material.Attrib[MAT_ATTRIB_BACK_EMISSION]);
582 return;
583 case STATE_SHININESS:
584 if (face == 0)
585 value[0] = ctx->Light.Material.Attrib[MAT_ATTRIB_FRONT_SHININESS][0];
586 else
587 value[0] = ctx->Light.Material.Attrib[MAT_ATTRIB_BACK_SHININESS][0];
588 value[1] = 0.0F;
589 value[2] = 0.0F;
590 value[3] = 1.0F;
591 return;
592 default:
593 _mesa_problem(ctx, "Invalid material state in fetch_state");
594 return;
595 }
Alan Hourihane22ae6332004-12-02 13:29:40 +0000596 }
Michal Krol2861e732004-03-29 11:09:34 +0000597 case STATE_LIGHT:
598 {
599 /* state[1] is the light number */
600 const GLuint ln = (GLuint) state[1];
601 /* state[2] is the light attribute */
602 switch (state[2]) {
603 case STATE_AMBIENT:
604 COPY_4V(value, ctx->Light.Light[ln].Ambient);
605 return;
606 case STATE_DIFFUSE:
607 COPY_4V(value, ctx->Light.Light[ln].Diffuse);
608 return;
609 case STATE_SPECULAR:
610 COPY_4V(value, ctx->Light.Light[ln].Specular);
611 return;
612 case STATE_POSITION:
613 COPY_4V(value, ctx->Light.Light[ln].EyePosition);
614 return;
615 case STATE_ATTENUATION:
616 value[0] = ctx->Light.Light[ln].ConstantAttenuation;
617 value[1] = ctx->Light.Light[ln].LinearAttenuation;
618 value[2] = ctx->Light.Light[ln].QuadraticAttenuation;
619 value[3] = ctx->Light.Light[ln].SpotExponent;
620 return;
621 case STATE_SPOT_DIRECTION:
622 COPY_4V(value, ctx->Light.Light[ln].EyeDirection);
623 return;
624 case STATE_HALF:
625 {
626 GLfloat eye_z[] = {0, 0, 1};
627
628 /* Compute infinite half angle vector:
629 * half-vector = light_position + (0, 0, 1)
630 * and then normalize. w = 0
631 *
632 * light.EyePosition.w should be 0 for infinite lights.
633 */
634 ADD_3V(value, eye_z, ctx->Light.Light[ln].EyePosition);
635 NORMALIZE_3FV(value);
636 value[3] = 0;
637 }
638 return;
639 default:
640 _mesa_problem(ctx, "Invalid light state in fetch_state");
641 return;
642 }
643 }
Michal Krol2861e732004-03-29 11:09:34 +0000644 case STATE_LIGHTMODEL_AMBIENT:
645 COPY_4V(value, ctx->Light.Model.Ambient);
646 return;
647 case STATE_LIGHTMODEL_SCENECOLOR:
648 if (state[1] == 0) {
649 /* front */
650 GLint i;
651 for (i = 0; i < 4; i++) {
652 value[i] = ctx->Light.Model.Ambient[i]
653 * ctx->Light.Material.Attrib[MAT_ATTRIB_FRONT_AMBIENT][i]
654 + ctx->Light.Material.Attrib[MAT_ATTRIB_FRONT_EMISSION][i];
655 }
656 }
657 else {
658 /* back */
659 GLint i;
660 for (i = 0; i < 4; i++) {
661 value[i] = ctx->Light.Model.Ambient[i]
662 * ctx->Light.Material.Attrib[MAT_ATTRIB_BACK_AMBIENT][i]
663 + ctx->Light.Material.Attrib[MAT_ATTRIB_BACK_EMISSION][i];
664 }
665 }
666 return;
667 case STATE_LIGHTPROD:
668 {
669 const GLuint ln = (GLuint) state[1];
670 const GLuint face = (GLuint) state[2];
671 GLint i;
672 ASSERT(face == 0 || face == 1);
673 switch (state[3]) {
674 case STATE_AMBIENT:
675 for (i = 0; i < 3; i++) {
676 value[i] = ctx->Light.Light[ln].Ambient[i] *
677 ctx->Light.Material.Attrib[MAT_ATTRIB_FRONT_AMBIENT+face][i];
678 }
679 /* [3] = material alpha */
680 value[3] = ctx->Light.Material.Attrib[MAT_ATTRIB_FRONT_DIFFUSE+face][3];
681 return;
682 case STATE_DIFFUSE:
683 for (i = 0; i < 3; i++) {
684 value[i] = ctx->Light.Light[ln].Diffuse[i] *
685 ctx->Light.Material.Attrib[MAT_ATTRIB_FRONT_DIFFUSE+face][i];
686 }
687 /* [3] = material alpha */
688 value[3] = ctx->Light.Material.Attrib[MAT_ATTRIB_FRONT_DIFFUSE+face][3];
689 return;
690 case STATE_SPECULAR:
691 for (i = 0; i < 3; i++) {
692 value[i] = ctx->Light.Light[ln].Specular[i] *
693 ctx->Light.Material.Attrib[MAT_ATTRIB_FRONT_SPECULAR+face][i];
694 }
695 /* [3] = material alpha */
696 value[3] = ctx->Light.Material.Attrib[MAT_ATTRIB_FRONT_DIFFUSE+face][3];
697 return;
698 default:
699 _mesa_problem(ctx, "Invalid lightprod state in fetch_state");
700 return;
701 }
702 }
Michal Krol2861e732004-03-29 11:09:34 +0000703 case STATE_TEXGEN:
704 {
705 /* state[1] is the texture unit */
706 const GLuint unit = (GLuint) state[1];
707 /* state[2] is the texgen attribute */
708 switch (state[2]) {
709 case STATE_TEXGEN_EYE_S:
710 COPY_4V(value, ctx->Texture.Unit[unit].EyePlaneS);
711 return;
712 case STATE_TEXGEN_EYE_T:
713 COPY_4V(value, ctx->Texture.Unit[unit].EyePlaneT);
714 return;
715 case STATE_TEXGEN_EYE_R:
716 COPY_4V(value, ctx->Texture.Unit[unit].EyePlaneR);
717 return;
718 case STATE_TEXGEN_EYE_Q:
719 COPY_4V(value, ctx->Texture.Unit[unit].EyePlaneQ);
720 return;
721 case STATE_TEXGEN_OBJECT_S:
722 COPY_4V(value, ctx->Texture.Unit[unit].ObjectPlaneS);
723 return;
724 case STATE_TEXGEN_OBJECT_T:
725 COPY_4V(value, ctx->Texture.Unit[unit].ObjectPlaneT);
726 return;
727 case STATE_TEXGEN_OBJECT_R:
728 COPY_4V(value, ctx->Texture.Unit[unit].ObjectPlaneR);
729 return;
730 case STATE_TEXGEN_OBJECT_Q:
731 COPY_4V(value, ctx->Texture.Unit[unit].ObjectPlaneQ);
732 return;
733 default:
734 _mesa_problem(ctx, "Invalid texgen state in fetch_state");
735 return;
736 }
737 }
Michal Krol2861e732004-03-29 11:09:34 +0000738 case STATE_TEXENV_COLOR:
739 {
740 /* state[1] is the texture unit */
741 const GLuint unit = (GLuint) state[1];
742 COPY_4V(value, ctx->Texture.Unit[unit].EnvColor);
743 }
744 return;
745 case STATE_FOG_COLOR:
746 COPY_4V(value, ctx->Fog.Color);
747 return;
748 case STATE_FOG_PARAMS:
749 value[0] = ctx->Fog.Density;
750 value[1] = ctx->Fog.Start;
751 value[2] = ctx->Fog.End;
752 value[3] = 1.0F / (ctx->Fog.End - ctx->Fog.Start);
753 return;
754 case STATE_CLIPPLANE:
755 {
756 const GLuint plane = (GLuint) state[1];
757 COPY_4V(value, ctx->Transform.EyeUserPlane[plane]);
758 }
759 return;
760 case STATE_POINT_SIZE:
761 value[0] = ctx->Point.Size;
762 value[1] = ctx->Point.MinSize;
763 value[2] = ctx->Point.MaxSize;
764 value[3] = ctx->Point.Threshold;
765 return;
766 case STATE_POINT_ATTENUATION:
767 value[0] = ctx->Point.Params[0];
768 value[1] = ctx->Point.Params[1];
769 value[2] = ctx->Point.Params[2];
770 value[3] = 1.0F;
771 return;
772 case STATE_MATRIX:
773 {
774 /* state[1] = modelview, projection, texture, etc. */
775 /* state[2] = which texture matrix or program matrix */
776 /* state[3] = first column to fetch */
777 /* state[4] = last column to fetch */
778 /* state[5] = transpose, inverse or invtrans */
779
780 const GLmatrix *matrix;
781 const enum state_index mat = state[1];
782 const GLuint index = (GLuint) state[2];
783 const GLuint first = (GLuint) state[3];
784 const GLuint last = (GLuint) state[4];
785 const enum state_index modifier = state[5];
786 const GLfloat *m;
787 GLuint row, i;
788 if (mat == STATE_MODELVIEW) {
789 matrix = ctx->ModelviewMatrixStack.Top;
790 }
791 else if (mat == STATE_PROJECTION) {
792 matrix = ctx->ProjectionMatrixStack.Top;
793 }
794 else if (mat == STATE_MVP) {
795 matrix = &ctx->_ModelProjectMatrix;
796 }
797 else if (mat == STATE_TEXTURE) {
798 matrix = ctx->TextureMatrixStack[index].Top;
799 }
800 else if (mat == STATE_PROGRAM) {
801 matrix = ctx->ProgramMatrixStack[index].Top;
802 }
803 else {
804 _mesa_problem(ctx, "Bad matrix name in _mesa_fetch_state()");
805 return;
806 }
807 if (modifier == STATE_MATRIX_INVERSE ||
808 modifier == STATE_MATRIX_INVTRANS) {
809 /* XXX be sure inverse is up to date */
810 m = matrix->inv;
811 }
812 else {
813 m = matrix->m;
814 }
815 if (modifier == STATE_MATRIX_TRANSPOSE ||
816 modifier == STATE_MATRIX_INVTRANS) {
817 for (i = 0, row = first; row <= last; row++) {
818 value[i++] = m[row * 4 + 0];
819 value[i++] = m[row * 4 + 1];
820 value[i++] = m[row * 4 + 2];
821 value[i++] = m[row * 4 + 3];
822 }
823 }
824 else {
825 for (i = 0, row = first; row <= last; row++) {
826 value[i++] = m[row + 0];
827 value[i++] = m[row + 4];
828 value[i++] = m[row + 8];
829 value[i++] = m[row + 12];
830 }
831 }
832 }
833 return;
834 case STATE_DEPTH_RANGE:
Brian Paul824fdf02004-06-29 00:00:06 +0000835 value[0] = ctx->Viewport.Near; /* near */
836 value[1] = ctx->Viewport.Far; /* far */
837 value[2] = ctx->Viewport.Far - ctx->Viewport.Near; /* far - near */
838 value[3] = 0;
Michal Krol2861e732004-03-29 11:09:34 +0000839 return;
840 case STATE_FRAGMENT_PROGRAM:
841 {
842 /* state[1] = {STATE_ENV, STATE_LOCAL} */
843 /* state[2] = parameter index */
Brian Paul824fdf02004-06-29 00:00:06 +0000844 const int idx = (int) state[2];
Michal Krol2861e732004-03-29 11:09:34 +0000845 switch (state[1]) {
846 case STATE_ENV:
Brian Paul824fdf02004-06-29 00:00:06 +0000847 COPY_4V(value, ctx->FragmentProgram.Parameters[idx]);
Michal Krol2861e732004-03-29 11:09:34 +0000848 break;
Michal Krol2861e732004-03-29 11:09:34 +0000849 case STATE_LOCAL:
850 COPY_4V(value, ctx->FragmentProgram.Current->Base.LocalParams[idx]);
Brian Paul824fdf02004-06-29 00:00:06 +0000851 break;
Michal Krol2861e732004-03-29 11:09:34 +0000852 default:
853 _mesa_problem(ctx, "Bad state switch in _mesa_fetch_state()");
854 return;
Brian Paul824fdf02004-06-29 00:00:06 +0000855 }
856 }
Michal Krol2861e732004-03-29 11:09:34 +0000857 return;
858
859 case STATE_VERTEX_PROGRAM:
Brian Paul824fdf02004-06-29 00:00:06 +0000860 {
Michal Krol2861e732004-03-29 11:09:34 +0000861 /* state[1] = {STATE_ENV, STATE_LOCAL} */
862 /* state[2] = parameter index */
Brian Paul824fdf02004-06-29 00:00:06 +0000863 const int idx = (int) state[2];
Michal Krol2861e732004-03-29 11:09:34 +0000864 switch (state[1]) {
865 case STATE_ENV:
Brian Paul824fdf02004-06-29 00:00:06 +0000866 COPY_4V(value, ctx->VertexProgram.Parameters[idx]);
Michal Krol2861e732004-03-29 11:09:34 +0000867 break;
Michal Krol2861e732004-03-29 11:09:34 +0000868 case STATE_LOCAL:
869 COPY_4V(value, ctx->VertexProgram.Current->Base.LocalParams[idx]);
Brian Paul824fdf02004-06-29 00:00:06 +0000870 break;
Michal Krol2861e732004-03-29 11:09:34 +0000871 default:
872 _mesa_problem(ctx, "Bad state switch in _mesa_fetch_state()");
873 return;
Brian Paul824fdf02004-06-29 00:00:06 +0000874 }
875 }
Michal Krol2861e732004-03-29 11:09:34 +0000876 return;
877 default:
Brian Paul824fdf02004-06-29 00:00:06 +0000878 _mesa_problem(ctx, "Invalid state in _mesa_fetch_state");
Michal Krol2861e732004-03-29 11:09:34 +0000879 return;
880 }
881}
882
883
884/**
885 * Loop over all the parameters in a parameter list. If the parameter
886 * is a GL state reference, look up the current value of that state
887 * variable and put it into the parameter's Value[4] array.
888 * This would be called at glBegin time when using a fragment program.
889 */
890void
891_mesa_load_state_parameters(GLcontext *ctx,
892 struct program_parameter_list *paramList)
893{
894 GLuint i;
895
896 if (!paramList)
897 return;
898
899 for (i = 0; i < paramList->NumParameters; i++) {
900 if (paramList->Parameters[i].Type == STATE) {
901 _mesa_fetch_state(ctx, paramList->Parameters[i].StateIndexes,
902 paramList->Parameters[i].Values);
903 }
904 }
905}
906
907
908
909/**********************************************************************/
910/* API functions */
911/**********************************************************************/
912
913
914/**
915 * Bind a program (make it current)
916 * \note Called from the GL API dispatcher by both glBindProgramNV
917 * and glBindProgramARB.
918 */
919void GLAPIENTRY
920_mesa_BindProgram(GLenum target, GLuint id)
921{
922 struct program *prog;
923 GET_CURRENT_CONTEXT(ctx);
924 ASSERT_OUTSIDE_BEGIN_END(ctx);
925
926 FLUSH_VERTICES(ctx, _NEW_PROGRAM);
927
928 if ((target == GL_VERTEX_PROGRAM_NV
929 && ctx->Extensions.NV_vertex_program) ||
930 (target == GL_VERTEX_PROGRAM_ARB
931 && ctx->Extensions.ARB_vertex_program)) {
Brian Paul765f1a12004-09-14 22:28:27 +0000932 /*** Vertex program binding ***/
933 struct vertex_program *curProg = ctx->VertexProgram.Current;
934 if (curProg->Base.Id == id) {
935 /* binding same program - no change */
Michal Krol2861e732004-03-29 11:09:34 +0000936 return;
Brian Paul765f1a12004-09-14 22:28:27 +0000937 }
938 if (curProg->Base.Id != 0) {
939 /* decrement refcount on previously bound vertex program */
940 curProg->Base.RefCount--;
Michal Krol2861e732004-03-29 11:09:34 +0000941 /* and delete if refcount goes below one */
Brian Paul765f1a12004-09-14 22:28:27 +0000942 if (curProg->Base.RefCount <= 0) {
Brian Paulea2943e2005-01-20 04:02:02 +0000943 /* the program ID was already removed from the hash table */
Brian Paul765f1a12004-09-14 22:28:27 +0000944 ctx->Driver.DeleteProgram(ctx, &(curProg->Base));
Michal Krol2861e732004-03-29 11:09:34 +0000945 }
946 }
947 }
948 else if ((target == GL_FRAGMENT_PROGRAM_NV
949 && ctx->Extensions.NV_fragment_program) ||
950 (target == GL_FRAGMENT_PROGRAM_ARB
951 && ctx->Extensions.ARB_fragment_program)) {
Brian Paul765f1a12004-09-14 22:28:27 +0000952 /*** Fragment program binding ***/
953 struct fragment_program *curProg = ctx->FragmentProgram.Current;
954 if (curProg->Base.Id == id) {
955 /* binding same program - no change */
Michal Krol2861e732004-03-29 11:09:34 +0000956 return;
Brian Paul765f1a12004-09-14 22:28:27 +0000957 }
958 if (curProg->Base.Id != 0) {
959 /* decrement refcount on previously bound fragment program */
960 curProg->Base.RefCount--;
Michal Krol2861e732004-03-29 11:09:34 +0000961 /* and delete if refcount goes below one */
Brian Paul765f1a12004-09-14 22:28:27 +0000962 if (curProg->Base.RefCount <= 0) {
Brian Paulea2943e2005-01-20 04:02:02 +0000963 /* the program ID was already removed from the hash table */
Brian Paul765f1a12004-09-14 22:28:27 +0000964 ctx->Driver.DeleteProgram(ctx, &(curProg->Base));
Michal Krol2861e732004-03-29 11:09:34 +0000965 }
966 }
967 }
968 else {
969 _mesa_error(ctx, GL_INVALID_ENUM, "glBindProgramNV/ARB(target)");
970 return;
971 }
972
973 /* NOTE: binding to a non-existant program is not an error.
974 * That's supposed to be caught in glBegin.
975 */
976 if (id == 0) {
Brian Paul765f1a12004-09-14 22:28:27 +0000977 /* Bind default program */
Michal Krol2861e732004-03-29 11:09:34 +0000978 prog = NULL;
979 if (target == GL_VERTEX_PROGRAM_NV || target == GL_VERTEX_PROGRAM_ARB)
980 prog = ctx->Shared->DefaultVertexProgram;
981 else
982 prog = ctx->Shared->DefaultFragmentProgram;
983 }
984 else {
Brian Paul765f1a12004-09-14 22:28:27 +0000985 /* Bind user program */
Michal Krol2861e732004-03-29 11:09:34 +0000986 prog = (struct program *) _mesa_HashLookup(ctx->Shared->Programs, id);
Brian Paul9ca83922004-10-02 15:16:59 +0000987 if (!prog || prog == &_mesa_DummyProgram) {
Michal Krol2861e732004-03-29 11:09:34 +0000988 /* allocate a new program now */
989 prog = ctx->Driver.NewProgram(ctx, target, id);
990 if (!prog) {
991 _mesa_error(ctx, GL_OUT_OF_MEMORY, "glBindProgramNV/ARB");
992 return;
993 }
Michal Krol2861e732004-03-29 11:09:34 +0000994 _mesa_HashInsert(ctx->Shared->Programs, id, prog);
995 }
Brian Paul765f1a12004-09-14 22:28:27 +0000996 else if (prog->Target != target) {
997 _mesa_error(ctx, GL_INVALID_OPERATION,
998 "glBindProgramNV/ARB(target mismatch)");
999 return;
1000 }
Michal Krol2861e732004-03-29 11:09:34 +00001001 }
1002
1003 /* bind now */
1004 if (target == GL_VERTEX_PROGRAM_NV || target == GL_VERTEX_PROGRAM_ARB) {
1005 ctx->VertexProgram.Current = (struct vertex_program *) prog;
1006 }
1007 else if (target == GL_FRAGMENT_PROGRAM_NV || target == GL_FRAGMENT_PROGRAM_ARB) {
1008 ctx->FragmentProgram.Current = (struct fragment_program *) prog;
1009 }
1010
Brian Paul765f1a12004-09-14 22:28:27 +00001011 /* Never null pointers */
1012 ASSERT(ctx->VertexProgram.Current);
1013 ASSERT(ctx->FragmentProgram.Current);
1014
Michal Krol2861e732004-03-29 11:09:34 +00001015 if (prog)
1016 prog->RefCount++;
1017
1018 if (ctx->Driver.BindProgram)
1019 ctx->Driver.BindProgram(ctx, target, prog);
1020}
1021
1022
1023/**
1024 * Delete a list of programs.
1025 * \note Not compiled into display lists.
1026 * \note Called by both glDeleteProgramsNV and glDeleteProgramsARB.
1027 */
1028void GLAPIENTRY
1029_mesa_DeletePrograms(GLsizei n, const GLuint *ids)
1030{
1031 GLint i;
1032 GET_CURRENT_CONTEXT(ctx);
1033 ASSERT_OUTSIDE_BEGIN_END_AND_FLUSH(ctx);
1034
1035 if (n < 0) {
1036 _mesa_error( ctx, GL_INVALID_VALUE, "glDeleteProgramsNV" );
1037 return;
1038 }
1039
1040 for (i = 0; i < n; i++) {
1041 if (ids[i] != 0) {
1042 struct program *prog = (struct program *)
1043 _mesa_HashLookup(ctx->Shared->Programs, ids[i]);
Brian Paul9ca83922004-10-02 15:16:59 +00001044 if (prog == &_mesa_DummyProgram) {
Brian Paul765f1a12004-09-14 22:28:27 +00001045 _mesa_HashRemove(ctx->Shared->Programs, ids[i]);
1046 }
1047 else if (prog) {
1048 /* Unbind program if necessary */
Michal Krol2861e732004-03-29 11:09:34 +00001049 if (prog->Target == GL_VERTEX_PROGRAM_NV ||
1050 prog->Target == GL_VERTEX_STATE_PROGRAM_NV) {
1051 if (ctx->VertexProgram.Current &&
1052 ctx->VertexProgram.Current->Base.Id == ids[i]) {
1053 /* unbind this currently bound program */
1054 _mesa_BindProgram(prog->Target, 0);
1055 }
1056 }
1057 else if (prog->Target == GL_FRAGMENT_PROGRAM_NV ||
1058 prog->Target == GL_FRAGMENT_PROGRAM_ARB) {
1059 if (ctx->FragmentProgram.Current &&
1060 ctx->FragmentProgram.Current->Base.Id == ids[i]) {
1061 /* unbind this currently bound program */
1062 _mesa_BindProgram(prog->Target, 0);
1063 }
1064 }
1065 else {
1066 _mesa_problem(ctx, "bad target in glDeleteProgramsNV");
1067 return;
1068 }
Brian Paulea2943e2005-01-20 04:02:02 +00001069 /* The ID is immediately available for re-use now */
1070 _mesa_HashRemove(ctx->Shared->Programs, ids[i]);
1071 prog->RefCount--;
Michal Krol2861e732004-03-29 11:09:34 +00001072 if (prog->RefCount <= 0) {
1073 ctx->Driver.DeleteProgram(ctx, prog);
1074 }
1075 }
Michal Krol2861e732004-03-29 11:09:34 +00001076 }
1077 }
1078}
1079
1080
1081/**
1082 * Generate a list of new program identifiers.
1083 * \note Not compiled into display lists.
1084 * \note Called by both glGenProgramsNV and glGenProgramsARB.
1085 */
1086void GLAPIENTRY
1087_mesa_GenPrograms(GLsizei n, GLuint *ids)
1088{
1089 GLuint first;
1090 GLuint i;
1091 GET_CURRENT_CONTEXT(ctx);
1092 ASSERT_OUTSIDE_BEGIN_END(ctx);
1093
1094 if (n < 0) {
1095 _mesa_error(ctx, GL_INVALID_VALUE, "glGenPrograms");
1096 return;
1097 }
1098
1099 if (!ids)
1100 return;
1101
1102 first = _mesa_HashFindFreeKeyBlock(ctx->Shared->Programs, n);
1103
Brian Paul765f1a12004-09-14 22:28:27 +00001104 /* Insert pointer to dummy program as placeholder */
Michal Krol2861e732004-03-29 11:09:34 +00001105 for (i = 0; i < (GLuint) n; i++) {
Brian Paul9ca83922004-10-02 15:16:59 +00001106 _mesa_HashInsert(ctx->Shared->Programs, first + i, &_mesa_DummyProgram);
Michal Krol2861e732004-03-29 11:09:34 +00001107 }
1108
1109 /* Return the program names */
1110 for (i = 0; i < (GLuint) n; i++) {
1111 ids[i] = first + i;
1112 }
1113}
1114
1115
1116/**
Brian Paul765f1a12004-09-14 22:28:27 +00001117 * Determine if id names a vertex or fragment program.
Michal Krol2861e732004-03-29 11:09:34 +00001118 * \note Not compiled into display lists.
1119 * \note Called from both glIsProgramNV and glIsProgramARB.
1120 * \param id is the program identifier
1121 * \return GL_TRUE if id is a program, else GL_FALSE.
1122 */
1123GLboolean GLAPIENTRY
1124_mesa_IsProgram(GLuint id)
1125{
1126 GET_CURRENT_CONTEXT(ctx);
1127 ASSERT_OUTSIDE_BEGIN_END_WITH_RETVAL(ctx, GL_FALSE);
1128
1129 if (id == 0)
1130 return GL_FALSE;
1131
1132 if (_mesa_HashLookup(ctx->Shared->Programs, id))
1133 return GL_TRUE;
1134 else
1135 return GL_FALSE;
1136}
1137
1138
1139
1140/**********************************************************************/
1141/* GL_MESA_program_debug extension */
1142/**********************************************************************/
1143
1144
1145/* XXX temporary */
1146void
1147glProgramCallbackMESA(GLenum target, GLprogramcallbackMESA callback,
1148 GLvoid *data)
1149{
1150 _mesa_ProgramCallbackMESA(target, callback, data);
1151}
1152
1153
1154void
1155_mesa_ProgramCallbackMESA(GLenum target, GLprogramcallbackMESA callback,
1156 GLvoid *data)
1157{
1158 GET_CURRENT_CONTEXT(ctx);
1159
1160 switch (target) {
1161 case GL_FRAGMENT_PROGRAM_ARB:
1162 if (!ctx->Extensions.ARB_fragment_program) {
1163 _mesa_error(ctx, GL_INVALID_ENUM, "glProgramCallbackMESA(target)");
1164 return;
1165 }
1166 ctx->FragmentProgram.Callback = callback;
1167 ctx->FragmentProgram.CallbackData = data;
1168 break;
1169 case GL_FRAGMENT_PROGRAM_NV:
1170 if (!ctx->Extensions.NV_fragment_program) {
1171 _mesa_error(ctx, GL_INVALID_ENUM, "glProgramCallbackMESA(target)");
1172 return;
1173 }
1174 ctx->FragmentProgram.Callback = callback;
1175 ctx->FragmentProgram.CallbackData = data;
1176 break;
1177 case GL_VERTEX_PROGRAM_ARB: /* == GL_VERTEX_PROGRAM_NV */
1178 if (!ctx->Extensions.ARB_vertex_program &&
1179 !ctx->Extensions.NV_vertex_program) {
1180 _mesa_error(ctx, GL_INVALID_ENUM, "glProgramCallbackMESA(target)");
1181 return;
1182 }
1183 ctx->VertexProgram.Callback = callback;
1184 ctx->VertexProgram.CallbackData = data;
1185 break;
1186 default:
1187 _mesa_error(ctx, GL_INVALID_ENUM, "glProgramCallbackMESA(target)");
1188 return;
1189 }
1190}
1191
1192
1193/* XXX temporary */
1194void
1195glGetProgramRegisterfvMESA(GLenum target,
1196 GLsizei len, const GLubyte *registerName,
1197 GLfloat *v)
1198{
1199 _mesa_GetProgramRegisterfvMESA(target, len, registerName, v);
1200}
1201
1202
1203void
1204_mesa_GetProgramRegisterfvMESA(GLenum target,
1205 GLsizei len, const GLubyte *registerName,
1206 GLfloat *v)
1207{
1208 char reg[1000];
1209 GET_CURRENT_CONTEXT(ctx);
1210
1211 /* We _should_ be inside glBegin/glEnd */
1212#if 0
1213 if (ctx->Driver.CurrentExecPrimitive == PRIM_OUTSIDE_BEGIN_END) {
1214 _mesa_error(ctx, GL_INVALID_OPERATION, "glGetProgramRegisterfvMESA");
1215 return;
1216 }
1217#endif
1218
1219 /* make null-terminated copy of registerName */
1220 len = MIN2((unsigned int) len, sizeof(reg) - 1);
1221 _mesa_memcpy(reg, registerName, len);
1222 reg[len] = 0;
1223
1224 switch (target) {
1225 case GL_VERTEX_PROGRAM_NV:
1226 if (!ctx->Extensions.ARB_vertex_program &&
1227 !ctx->Extensions.NV_vertex_program) {
1228 _mesa_error(ctx, GL_INVALID_ENUM,
1229 "glGetProgramRegisterfvMESA(target)");
1230 return;
1231 }
Brian Paul6d460af2004-04-23 14:16:46 +00001232 if (!ctx->VertexProgram._Enabled) {
Michal Krol2861e732004-03-29 11:09:34 +00001233 _mesa_error(ctx, GL_INVALID_OPERATION,
1234 "glGetProgramRegisterfvMESA");
1235 return;
1236 }
1237 /* GL_NV_vertex_program */
1238 if (reg[0] == 'R') {
1239 /* Temp register */
1240 GLint i = _mesa_atoi(reg + 1);
1241 if (i >= (GLint)ctx->Const.MaxVertexProgramTemps) {
1242 _mesa_error(ctx, GL_INVALID_VALUE,
1243 "glGetProgramRegisterfvMESA(registerName)");
1244 return;
1245 }
1246 COPY_4V(v, ctx->VertexProgram.Temporaries[i]);
1247 }
1248 else if (reg[0] == 'v' && reg[1] == '[') {
1249 /* Vertex Input attribute */
1250 GLuint i;
1251 for (i = 0; i < ctx->Const.MaxVertexProgramAttribs; i++) {
1252 const char *name = _mesa_nv_vertex_input_register_name(i);
1253 char number[10];
1254 sprintf(number, "%d", i);
1255 if (_mesa_strncmp(reg + 2, name, 4) == 0 ||
1256 _mesa_strncmp(reg + 2, number, _mesa_strlen(number)) == 0) {
1257 COPY_4V(v, ctx->VertexProgram.Inputs[i]);
1258 return;
1259 }
1260 }
1261 _mesa_error(ctx, GL_INVALID_VALUE,
1262 "glGetProgramRegisterfvMESA(registerName)");
1263 return;
1264 }
1265 else if (reg[0] == 'o' && reg[1] == '[') {
1266 /* Vertex output attribute */
1267 }
1268 /* GL_ARB_vertex_program */
1269 else if (_mesa_strncmp(reg, "vertex.", 7) == 0) {
1270
1271 }
1272 else {
1273 _mesa_error(ctx, GL_INVALID_VALUE,
1274 "glGetProgramRegisterfvMESA(registerName)");
1275 return;
1276 }
1277 break;
1278 case GL_FRAGMENT_PROGRAM_ARB:
1279 if (!ctx->Extensions.ARB_fragment_program) {
1280 _mesa_error(ctx, GL_INVALID_ENUM,
1281 "glGetProgramRegisterfvMESA(target)");
1282 return;
1283 }
Brian Paul6d460af2004-04-23 14:16:46 +00001284 if (!ctx->FragmentProgram._Enabled) {
Michal Krol2861e732004-03-29 11:09:34 +00001285 _mesa_error(ctx, GL_INVALID_OPERATION,
1286 "glGetProgramRegisterfvMESA");
1287 return;
1288 }
1289 /* XXX to do */
1290 break;
1291 case GL_FRAGMENT_PROGRAM_NV:
1292 if (!ctx->Extensions.NV_fragment_program) {
1293 _mesa_error(ctx, GL_INVALID_ENUM,
1294 "glGetProgramRegisterfvMESA(target)");
1295 return;
1296 }
Brian Paul6d460af2004-04-23 14:16:46 +00001297 if (!ctx->FragmentProgram._Enabled) {
Michal Krol2861e732004-03-29 11:09:34 +00001298 _mesa_error(ctx, GL_INVALID_OPERATION,
1299 "glGetProgramRegisterfvMESA");
1300 return;
1301 }
1302 if (reg[0] == 'R') {
1303 /* Temp register */
1304 GLint i = _mesa_atoi(reg + 1);
1305 if (i >= (GLint)ctx->Const.MaxFragmentProgramTemps) {
1306 _mesa_error(ctx, GL_INVALID_VALUE,
1307 "glGetProgramRegisterfvMESA(registerName)");
1308 return;
1309 }
1310 COPY_4V(v, ctx->FragmentProgram.Machine.Temporaries[i]);
1311 }
1312 else if (reg[0] == 'f' && reg[1] == '[') {
1313 /* Fragment input attribute */
1314 GLuint i;
1315 for (i = 0; i < ctx->Const.MaxFragmentProgramAttribs; i++) {
1316 const char *name = _mesa_nv_fragment_input_register_name(i);
1317 if (_mesa_strncmp(reg + 2, name, 4) == 0) {
1318 COPY_4V(v, ctx->FragmentProgram.Machine.Inputs[i]);
1319 return;
1320 }
1321 }
1322 _mesa_error(ctx, GL_INVALID_VALUE,
1323 "glGetProgramRegisterfvMESA(registerName)");
1324 return;
1325 }
1326 else if (_mesa_strcmp(reg, "o[COLR]") == 0) {
1327 /* Fragment output color */
1328 COPY_4V(v, ctx->FragmentProgram.Machine.Outputs[FRAG_OUTPUT_COLR]);
1329 }
1330 else if (_mesa_strcmp(reg, "o[COLH]") == 0) {
1331 /* Fragment output color */
1332 COPY_4V(v, ctx->FragmentProgram.Machine.Outputs[FRAG_OUTPUT_COLH]);
1333 }
1334 else if (_mesa_strcmp(reg, "o[DEPR]") == 0) {
1335 /* Fragment output depth */
1336 COPY_4V(v, ctx->FragmentProgram.Machine.Outputs[FRAG_OUTPUT_DEPR]);
1337 }
1338 else {
1339 /* try user-defined identifiers */
1340 const GLfloat *value = _mesa_lookup_parameter_value(
1341 ctx->FragmentProgram.Current->Parameters, -1, reg);
1342 if (value) {
1343 COPY_4V(v, value);
1344 }
1345 else {
1346 _mesa_error(ctx, GL_INVALID_VALUE,
1347 "glGetProgramRegisterfvMESA(registerName)");
1348 return;
1349 }
1350 }
1351 break;
1352 default:
1353 _mesa_error(ctx, GL_INVALID_ENUM,
1354 "glGetProgramRegisterfvMESA(target)");
1355 return;
1356 }
1357
1358}