[MESA]
[reactos.git] / reactos / dll / opengl / mesa / main / varray.h
1 /*
2 * Mesa 3-D graphics library
3 * Version: 7.6
4 *
5 * Copyright (C) 1999-2008 Brian Paul All Rights Reserved.
6 * Copyright (C) 2009 VMware, Inc. All Rights Reserved.
7 *
8 * Permission is hereby granted, free of charge, to any person obtaining a
9 * copy of this software and associated documentation files (the "Software"),
10 * to deal in the Software without restriction, including without limitation
11 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
12 * and/or sell copies of the Software, and to permit persons to whom the
13 * Software is furnished to do so, subject to the following conditions:
14 *
15 * The above copyright notice and this permission notice shall be included
16 * in all copies or substantial portions of the Software.
17 *
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
19 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
21 * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
22 * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
23 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
24 */
25
26
27 #ifndef VARRAY_H
28 #define VARRAY_H
29
30
31 #include "glheader.h"
32 #include "mfeatures.h"
33
34 struct gl_client_array;
35 struct gl_context;
36
37
38 /**
39 * Compute the index of the last array element that can be safely accessed in
40 * a vertex array. We can really only do this when the array lives in a VBO.
41 * The array->_MaxElement field will be updated.
42 * Later in glDrawArrays/Elements/etc we can do some bounds checking.
43 */
44 static inline void
45 _mesa_update_array_max_element(struct gl_client_array *array)
46 {
47 assert(array->Enabled);
48
49 if (array->BufferObj->Name) {
50 GLsizeiptrARB offset = (GLsizeiptrARB) array->Ptr;
51 GLsizeiptrARB bufSize = (GLsizeiptrARB) array->BufferObj->Size;
52
53 if (offset < bufSize) {
54 array->_MaxElement = (bufSize - offset + array->StrideB
55 - array->_ElementSize) / array->StrideB;
56 }
57 else {
58 array->_MaxElement = 0;
59 }
60 }
61 else {
62 /* user-space array, no idea how big it is */
63 array->_MaxElement = 2 * 1000 * 1000 * 1000; /* just a big number */
64 }
65 }
66
67
68 #if _HAVE_FULL_GL
69
70 extern void GLAPIENTRY
71 _mesa_VertexPointer(GLint size, GLenum type, GLsizei stride,
72 const GLvoid *ptr);
73
74 extern void GLAPIENTRY
75 _mesa_UnlockArraysEXT( void );
76
77 extern void GLAPIENTRY
78 _mesa_LockArraysEXT(GLint first, GLsizei count);
79
80
81 extern void GLAPIENTRY
82 _mesa_NormalPointer(GLenum type, GLsizei stride, const GLvoid *ptr);
83
84
85 extern void GLAPIENTRY
86 _mesa_ColorPointer(GLint size, GLenum type, GLsizei stride, const GLvoid *ptr);
87
88
89 extern void GLAPIENTRY
90 _mesa_IndexPointer(GLenum type, GLsizei stride, const GLvoid *ptr);
91
92
93 extern void GLAPIENTRY
94 _mesa_TexCoordPointer(GLint size, GLenum type, GLsizei stride,
95 const GLvoid *ptr);
96
97
98 extern void GLAPIENTRY
99 _mesa_EdgeFlagPointer(GLsizei stride, const GLvoid *ptr);
100
101
102 extern void GLAPIENTRY
103 _mesa_VertexPointerEXT(GLint size, GLenum type, GLsizei stride,
104 GLsizei count, const GLvoid *ptr);
105
106
107 extern void GLAPIENTRY
108 _mesa_NormalPointerEXT(GLenum type, GLsizei stride, GLsizei count,
109 const GLvoid *ptr);
110
111
112 extern void GLAPIENTRY
113 _mesa_ColorPointerEXT(GLint size, GLenum type, GLsizei stride, GLsizei count,
114 const GLvoid *ptr);
115
116
117 extern void GLAPIENTRY
118 _mesa_IndexPointerEXT(GLenum type, GLsizei stride, GLsizei count,
119 const GLvoid *ptr);
120
121
122 extern void GLAPIENTRY
123 _mesa_TexCoordPointerEXT(GLint size, GLenum type, GLsizei stride,
124 GLsizei count, const GLvoid *ptr);
125
126
127 extern void GLAPIENTRY
128 _mesa_EdgeFlagPointerEXT(GLsizei stride, GLsizei count, const GLboolean *ptr);
129
130
131 extern void GLAPIENTRY
132 _mesa_FogCoordPointerEXT(GLenum type, GLsizei stride, const GLvoid *ptr);
133
134
135 extern void GLAPIENTRY
136 _mesa_SecondaryColorPointerEXT(GLint size, GLenum type,
137 GLsizei stride, const GLvoid *ptr);
138
139
140 extern void GLAPIENTRY
141 _mesa_InterleavedArrays(GLenum format, GLsizei stride, const GLvoid *pointer);
142
143 extern void GLAPIENTRY
144 _mesa_MultiModeDrawArraysIBM( const GLenum * mode, const GLint * first,
145 const GLsizei * count,
146 GLsizei primcount, GLint modestride );
147
148
149 extern void GLAPIENTRY
150 _mesa_MultiModeDrawElementsIBM( const GLenum * mode, const GLsizei * count,
151 GLenum type, const GLvoid * const * indices,
152 GLsizei primcount, GLint modestride );
153
154 extern void GLAPIENTRY
155 _mesa_LockArraysEXT(GLint first, GLsizei count);
156
157 extern void GLAPIENTRY
158 _mesa_UnlockArraysEXT( void );
159
160
161 extern void GLAPIENTRY
162 _mesa_DrawArrays(GLenum mode, GLint first, GLsizei count);
163
164 extern void GLAPIENTRY
165 _mesa_DrawElements(GLenum mode, GLsizei count, GLenum type,
166 const GLvoid *indices);
167
168 extern void GLAPIENTRY
169 _mesa_DrawRangeElements(GLenum mode, GLuint start, GLuint end, GLsizei count,
170 GLenum type, const GLvoid *indices);
171
172
173 extern void
174 _mesa_copy_client_array(struct gl_context *ctx,
175 struct gl_client_array *dst,
176 struct gl_client_array *src);
177
178
179 extern void
180 _mesa_print_arrays(struct gl_context *ctx);
181
182 extern void
183 _mesa_init_varray( struct gl_context * ctx );
184
185 extern void
186 _mesa_free_varray_data(struct gl_context *ctx);
187
188 #else
189
190 /** No-op */
191 #define _mesa_init_varray( c ) ((void)0)
192 #define _mesa_free_varray_data( c ) ((void)0)
193
194 #endif
195
196 #endif