assorted clean-ups and improvements
[mesa.git] / src / mesa / main / nvprogram.h
1 /* $Id: nvprogram.h,v 1.4 2003/02/25 19:30:29 brianp Exp $ */
2
3 /*
4 * Mesa 3-D graphics library
5 * Version: 5.1
6 *
7 * Copyright (C) 1999-2003 Brian Paul All Rights Reserved.
8 *
9 * Permission is hereby granted, free of charge, to any person obtaining a
10 * copy of this software and associated documentation files (the "Software"),
11 * to deal in the Software without restriction, including without limitation
12 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
13 * and/or sell copies of the Software, and to permit persons to whom the
14 * Software is furnished to do so, subject to the following conditions:
15 *
16 * The above copyright notice and this permission notice shall be included
17 * in all copies or substantial portions of the Software.
18 *
19 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
20 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
22 * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
23 * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
24 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25 *
26 * Authors:
27 * Brian Paul
28 */
29
30
31 #ifndef NVPROGRAM_H
32 #define NVPROGRAM_H
33
34
35 enum symbol_type
36 {
37 Definition,
38 Declaration
39 };
40
41
42 extern void
43 _mesa_add_symbol(struct symbol_table *symbolTable,
44 const char *name, enum symbol_type type,
45 const GLfloat *value);
46
47 extern GLboolean
48 _mesa_lookup_symbol(const struct symbol_table *symbolTable,
49 const char *name, GLfloat *value);
50
51 extern void
52 _mesa_assign_program_registers(struct symbol_table *symbolTable);
53
54
55 extern void
56 _mesa_set_program_error(GLcontext *ctx, GLint pos, const char *string);
57
58 extern const GLubyte *
59 _mesa_find_line_column(const GLubyte *string, const GLubyte *pos,
60 GLint *line, GLint *col);
61
62 extern void
63 _mesa_delete_program(GLcontext *ctx, GLuint id);
64
65
66 extern void
67 _mesa_BindProgramNV(GLenum target, GLuint id);
68
69 extern void
70 _mesa_DeleteProgramsNV(GLsizei n, const GLuint *ids);
71
72 extern void
73 _mesa_ExecuteProgramNV(GLenum target, GLuint id, const GLfloat *params);
74
75 extern void
76 _mesa_GenProgramsNV(GLsizei n, GLuint *ids);
77
78 extern GLboolean
79 _mesa_AreProgramsResidentNV(GLsizei n, const GLuint *ids, GLboolean *residences);
80
81 extern void
82 _mesa_RequestResidentProgramsNV(GLsizei n, const GLuint *ids);
83
84
85 extern void
86 _mesa_GetProgramParameterfvNV(GLenum target, GLuint index, GLenum pname, GLfloat *params);
87
88 extern void
89 _mesa_GetProgramParameterdvNV(GLenum target, GLuint index, GLenum pname, GLdouble *params);
90
91 extern void
92 _mesa_GetProgramivNV(GLuint id, GLenum pname, GLint *params);
93
94 extern void
95 _mesa_GetProgramStringNV(GLuint id, GLenum pname, GLubyte *program);
96
97 extern void
98 _mesa_GetTrackMatrixivNV(GLenum target, GLuint address, GLenum pname, GLint *params);
99
100 extern void
101 _mesa_GetVertexAttribdvNV(GLuint index, GLenum pname, GLdouble *params);
102
103 extern void
104 _mesa_GetVertexAttribfvNV(GLuint index, GLenum pname, GLfloat *params);
105
106 extern void
107 _mesa_GetVertexAttribivNV(GLuint index, GLenum pname, GLint *params);
108
109 extern void
110 _mesa_GetVertexAttribPointervNV(GLuint index, GLenum pname, GLvoid **pointer);
111
112 extern GLboolean
113 _mesa_IsProgramNV(GLuint id);
114
115 extern void
116 _mesa_LoadProgramNV(GLenum target, GLuint id, GLsizei len, const GLubyte *program);
117
118 extern void
119 _mesa_ProgramParameter4dNV(GLenum target, GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w);
120
121 extern void
122 _mesa_ProgramParameter4dvNV(GLenum target, GLuint index, const GLdouble *params);
123
124 extern void
125 _mesa_ProgramParameter4fNV(GLenum target, GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w);
126
127 extern void
128 _mesa_ProgramParameter4fvNV(GLenum target, GLuint index, const GLfloat *params);
129
130 extern void
131 _mesa_ProgramParameters4dvNV(GLenum target, GLuint index, GLuint num, const GLdouble *params);
132
133 extern void
134 _mesa_ProgramParameters4fvNV(GLenum target, GLuint index, GLuint num, const GLfloat *params);
135
136 extern void
137 _mesa_TrackMatrixNV(GLenum target, GLuint address, GLenum matrix, GLenum transform);
138
139
140 extern void
141 _mesa_VertexAttribs1svNV(GLuint index, GLsizei n, const GLshort *v);
142
143 extern void
144 _mesa_VertexAttribs1fvNV(GLuint index, GLsizei n, const GLfloat *v);
145
146 extern void
147 _mesa_VertexAttribs1dvNV(GLuint index, GLsizei n, const GLdouble *v);
148
149 extern void
150 _mesa_VertexAttribs2svNV(GLuint index, GLsizei n, const GLshort *v);
151
152 extern void
153 _mesa_VertexAttribs2fvNV(GLuint index, GLsizei n, const GLfloat *v);
154
155 extern void
156 _mesa_VertexAttribs2dvNV(GLuint index, GLsizei n, const GLdouble *v);
157
158 extern void
159 _mesa_VertexAttribs3svNV(GLuint index, GLsizei n, const GLshort *v);
160
161 extern void
162 _mesa_VertexAttribs3fvNV(GLuint index, GLsizei n, const GLfloat *v);
163
164 extern void
165 _mesa_VertexAttribs3dvNV(GLuint index, GLsizei n, const GLdouble *v);
166
167 extern void
168 _mesa_VertexAttribs4svNV(GLuint index, GLsizei n, const GLshort *v);
169
170 extern void
171 _mesa_VertexAttribs4fvNV(GLuint index, GLsizei n, const GLfloat *v);
172
173 extern void
174 _mesa_VertexAttribs4dvNV(GLuint index, GLsizei n, const GLdouble *v);
175
176 extern void
177 _mesa_VertexAttribs4ubvNV(GLuint index, GLsizei n, const GLubyte *v);
178
179
180 #endif