fix GL_BACK color material bug
[mesa.git] / src / mesa / main / varray.h
1 /* $Id: varray.h,v 1.7 2000/06/12 15:30:52 brianp Exp $ */
2
3 /*
4 * Mesa 3-D graphics library
5 * Version: 3.3
6 *
7 * Copyright (C) 1999-2000 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
27
28 #ifndef VARRAY_H
29 #define VARRAY_H
30
31
32 #include "types.h"
33
34
35 extern void
36 _mesa_VertexPointer(GLint size, GLenum type, GLsizei stride,
37 const GLvoid *ptr);
38
39
40 extern void
41 _mesa_NormalPointer(GLenum type, GLsizei stride, const GLvoid *ptr);
42
43
44 extern void
45 _mesa_ColorPointer(GLint size, GLenum type, GLsizei stride, const GLvoid *ptr);
46
47
48 extern void
49 _mesa_IndexPointer(GLenum type, GLsizei stride, const GLvoid *ptr);
50
51
52 extern void
53 _mesa_TexCoordPointer(GLint size, GLenum type, GLsizei stride,
54 const GLvoid *ptr);
55
56
57 extern void
58 _mesa_EdgeFlagPointer(GLsizei stride, const GLvoid *ptr);
59
60
61 extern void
62 _mesa_VertexPointerEXT(GLint size, GLenum type, GLsizei stride,
63 GLsizei count, const GLvoid *ptr);
64
65
66 extern void
67 _mesa_NormalPointerEXT(GLenum type, GLsizei stride, GLsizei count,
68 const GLvoid *ptr);
69
70
71 extern void
72 _mesa_ColorPointerEXT(GLint size, GLenum type, GLsizei stride, GLsizei count,
73 const GLvoid *ptr);
74
75
76 extern void
77 _mesa_IndexPointerEXT(GLenum type, GLsizei stride, GLsizei count,
78 const GLvoid *ptr);
79
80
81 extern void
82 _mesa_TexCoordPointerEXT(GLint size, GLenum type, GLsizei stride,
83 GLsizei count, const GLvoid *ptr);
84
85
86 extern void
87 _mesa_EdgeFlagPointerEXT(GLsizei stride, GLsizei count, const GLboolean *ptr);
88
89
90
91
92
93 extern void
94 _mesa_ArrayElement( GLint );
95
96
97 extern void
98 _mesa_DrawArrays(GLenum mode, GLint first, GLsizei count);
99
100
101 extern void
102 _mesa_save_DrawArrays(GLenum mode, GLint first, GLsizei count);
103
104
105 extern void
106 _mesa_DrawElements(GLenum mode, GLsizei count, GLenum type,
107 const GLvoid *indices);
108
109
110 extern void
111 _mesa_save_DrawElements(GLenum mode, GLsizei count,
112 GLenum type, const GLvoid *indices);
113
114
115 extern void
116 _mesa_InterleavedArrays(GLenum format, GLsizei stride, const GLvoid *pointer);
117
118 extern void
119 _mesa_save_InterleavedArrays(GLenum format, GLsizei stride,
120 const GLvoid *pointer);
121
122
123 extern void
124 _mesa_DrawRangeElements(GLenum mode, GLuint start,
125 GLuint end, GLsizei count, GLenum type,
126 const GLvoid *indices);
127
128 extern void
129 _mesa_save_DrawRangeElements(GLenum mode,
130 GLuint start, GLuint end, GLsizei count,
131 GLenum type, const GLvoid *indices );
132
133
134 extern void gl_exec_array_elements( GLcontext *ctx,
135 struct immediate *IM,
136 GLuint start,
137 GLuint end );
138
139 extern void gl_update_client_state( GLcontext *ctx );
140
141
142 #endif