blob: 54a14bbb9f8a8ecd7d01ab36c1ea0a091b15ede2 [file] [log] [blame]
Michal Krol157ec8b2004-03-10 18:02:01 +00001/*
2 * Mesa 3-D graphics library
3 * Version: 5.1
4 *
5 * Copyright (C) 1999-2003 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#ifndef ARBPROGRAM_H
27#define ARBPROGRAM_H
28
29
30extern void GLAPIENTRY
31_mesa_EnableVertexAttribArrayARB(GLuint index);
32
33
34extern void GLAPIENTRY
35_mesa_DisableVertexAttribArrayARB(GLuint index);
36
37
38extern void GLAPIENTRY
39_mesa_GetVertexAttribdvARB(GLuint index, GLenum pname, GLdouble *params);
40
41
42extern void GLAPIENTRY
43_mesa_GetVertexAttribfvARB(GLuint index, GLenum pname, GLfloat *params);
44
45
46extern void GLAPIENTRY
47_mesa_GetVertexAttribivARB(GLuint index, GLenum pname, GLint *params);
48
49
50extern void GLAPIENTRY
51_mesa_GetVertexAttribPointervARB(GLuint index, GLenum pname, GLvoid **pointer);
52
53
54extern void GLAPIENTRY
55_mesa_ProgramStringARB(GLenum target, GLenum format, GLsizei len,
56 const GLvoid *string);
57
58
59extern void GLAPIENTRY
60_mesa_ProgramEnvParameter4dARB(GLenum target, GLuint index,
61 GLdouble x, GLdouble y, GLdouble z, GLdouble w);
62
63
64extern void GLAPIENTRY
65_mesa_ProgramEnvParameter4dvARB(GLenum target, GLuint index,
66 const GLdouble *params);
67
68
69extern void GLAPIENTRY
70_mesa_ProgramEnvParameter4fARB(GLenum target, GLuint index,
71 GLfloat x, GLfloat y, GLfloat z, GLfloat w);
72
73
74extern void GLAPIENTRY
75_mesa_ProgramEnvParameter4fvARB(GLenum target, GLuint index,
76 const GLfloat *params);
77
78
79extern void GLAPIENTRY
Ian Romanick8c41c752006-08-15 16:47:34 +000080_mesa_ProgramEnvParameters4fvEXT(GLenum target, GLuint index, GLsizei count,
81 const GLfloat *params);
82
83
84extern void GLAPIENTRY
Michal Krol157ec8b2004-03-10 18:02:01 +000085_mesa_ProgramLocalParameter4dARB(GLenum target, GLuint index,
86 GLdouble x, GLdouble y,
87 GLdouble z, GLdouble w);
88
89
90extern void GLAPIENTRY
91_mesa_ProgramLocalParameter4dvARB(GLenum target, GLuint index,
92 const GLdouble *params);
93
94
95extern void GLAPIENTRY
96_mesa_ProgramLocalParameter4fARB(GLenum target, GLuint index,
97 GLfloat x, GLfloat y, GLfloat z, GLfloat w);
98
99
100extern void GLAPIENTRY
101_mesa_ProgramLocalParameter4fvARB(GLenum target, GLuint index,
102 const GLfloat *params);
103
104
105extern void GLAPIENTRY
Ian Romanick8c41c752006-08-15 16:47:34 +0000106_mesa_ProgramLocalParameters4fvEXT(GLenum target, GLuint index, GLsizei count,
107 const GLfloat *params);
108
109
110extern void GLAPIENTRY
Michal Krol157ec8b2004-03-10 18:02:01 +0000111_mesa_GetProgramEnvParameterdvARB(GLenum target, GLuint index,
112 GLdouble *params);
113
114
115extern void GLAPIENTRY
116_mesa_GetProgramEnvParameterfvARB(GLenum target, GLuint index,
117 GLfloat *params);
118
119
120extern void GLAPIENTRY
121_mesa_GetProgramLocalParameterdvARB(GLenum target, GLuint index,
122 GLdouble *params);
123
124
125extern void GLAPIENTRY
126_mesa_GetProgramLocalParameterfvARB(GLenum target, GLuint index,
127 GLfloat *params);
128
129
130extern void GLAPIENTRY
131_mesa_GetProgramivARB(GLenum target, GLenum pname, GLint *params);
132
133
134extern void GLAPIENTRY
135_mesa_GetProgramStringARB(GLenum target, GLenum pname, GLvoid *string);
136
137
138#endif