db136f944504c3827371b7dc874ed27a555abb73
[mesa.git] / src / mesa / vbo / vbo.h
1 /*
2 * mesa 3-D graphics library
3 *
4 * Copyright (C) 1999-2006 Brian Paul All Rights Reserved.
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the "Software"),
8 * to deal in the Software without restriction, including without limitation
9 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
10 * and/or sell copies of the Software, and to permit persons to whom the
11 * Software is furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included
14 * in all copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
17 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
20 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
21 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
22 * OTHER DEALINGS IN THE SOFTWARE.
23 */
24
25 /**
26 * \brief Public interface to the VBO module
27 * \author Keith Whitwell
28 */
29
30
31 #ifndef _VBO_H
32 #define _VBO_H
33
34 #include <stdbool.h>
35 #include "main/glheader.h"
36
37 #ifdef __cplusplus
38 extern "C" {
39 #endif
40
41 struct gl_vertex_array;
42 struct gl_context;
43 struct gl_transform_feedback_object;
44
45 struct _mesa_prim
46 {
47 GLuint mode:8; /**< GL_POINTS, GL_LINES, GL_QUAD_STRIP, etc */
48 GLuint indexed:1;
49 GLuint begin:1;
50 GLuint end:1;
51 GLuint weak:1;
52 GLuint no_current_update:1;
53 GLuint is_indirect:1;
54 GLuint pad:18;
55
56 GLuint start;
57 GLuint count;
58 GLint basevertex;
59 GLuint num_instances;
60 GLuint base_instance;
61 GLuint draw_id;
62
63 GLsizeiptr indirect_offset;
64 };
65
66 /* Would like to call this a "vbo_index_buffer", but this would be
67 * confusing as the indices are not neccessarily yet in a non-null
68 * buffer object.
69 */
70 struct _mesa_index_buffer
71 {
72 GLuint count;
73 unsigned index_size;
74 struct gl_buffer_object *obj;
75 const void *ptr;
76 };
77
78
79
80 GLboolean
81 _vbo_CreateContext(struct gl_context *ctx);
82
83 void
84 _vbo_DestroyContext(struct gl_context *ctx);
85
86 void
87 vbo_exec_invalidate_state(struct gl_context *ctx);
88
89 void
90 _vbo_install_exec_vtxfmt(struct gl_context *ctx);
91
92 void
93 vbo_initialize_exec_dispatch(const struct gl_context *ctx,
94 struct _glapi_table *exec);
95
96 void
97 vbo_initialize_save_dispatch(const struct gl_context *ctx,
98 struct _glapi_table *exec);
99
100 void
101 vbo_exec_FlushVertices(struct gl_context *ctx, GLuint flags);
102
103 void
104 vbo_save_SaveFlushVertices(struct gl_context *ctx);
105
106 void
107 vbo_save_NotifyBegin(struct gl_context *ctx, GLenum mode);
108
109 void
110 vbo_save_NewList(struct gl_context *ctx, GLuint list, GLenum mode);
111
112 void
113 vbo_save_EndList(struct gl_context *ctx);
114
115 void
116 vbo_save_BeginCallList(struct gl_context *ctx, struct gl_display_list *list);
117
118 void
119 vbo_save_EndCallList(struct gl_context *ctx);
120
121
122 /**
123 * For indirect array drawing:
124 *
125 * typedef struct {
126 * GLuint count;
127 * GLuint primCount;
128 * GLuint first;
129 * GLuint baseInstance; // in GL 4.2 and later, must be zero otherwise
130 * } DrawArraysIndirectCommand;
131 *
132 * For indirect indexed drawing:
133 *
134 * typedef struct {
135 * GLuint count;
136 * GLuint primCount;
137 * GLuint firstIndex;
138 * GLint baseVertex;
139 * GLuint baseInstance; // in GL 4.2 and later, must be zero otherwise
140 * } DrawElementsIndirectCommand;
141 */
142
143
144 /**
145 * Draw a number of primitives.
146 * \param prims array [nr_prims] describing what to draw (prim type,
147 * vertex count, first index, instance count, etc).
148 * \param ib index buffer for indexed drawing, NULL for array drawing
149 * \param index_bounds_valid are min_index and max_index valid?
150 * \param min_index lowest vertex index used
151 * \param max_index highest vertex index used
152 * \param tfb_vertcount if non-null, indicates which transform feedback
153 * object has the vertex count.
154 * \param tfb_stream If called via DrawTransformFeedbackStream, specifies the
155 * vertex stream buffer from which to get the vertex count.
156 * \param indirect If any prims are indirect, this specifies the buffer
157 * to find the "DrawArrays/ElementsIndirectCommand" data.
158 * This may be deprecated in the future
159 */
160 typedef void (*vbo_draw_func)(struct gl_context *ctx,
161 const struct _mesa_prim *prims,
162 GLuint nr_prims,
163 const struct _mesa_index_buffer *ib,
164 GLboolean index_bounds_valid,
165 GLuint min_index,
166 GLuint max_index,
167 struct gl_transform_feedback_object *tfb_vertcount,
168 unsigned tfb_stream,
169 struct gl_buffer_object *indirect);
170
171
172
173
174 /* Utility function to cope with various constraints on tnl modules or
175 * hardware. This can be used to split an incoming set of arrays and
176 * primitives against the following constraints:
177 * - Maximum number of indices in index buffer.
178 * - Maximum number of vertices referenced by index buffer.
179 * - Maximum hardware vertex buffer size.
180 */
181 struct split_limits
182 {
183 GLuint max_verts;
184 GLuint max_indices;
185 GLuint max_vb_size; /* bytes */
186 };
187
188
189 void
190 _vbo_draw(struct gl_context *ctx, const struct _mesa_prim *prims,
191 GLuint nr_prims, const struct _mesa_index_buffer *ib,
192 GLboolean index_bounds_valid, GLuint min_index, GLuint max_index,
193 struct gl_transform_feedback_object *tfb_vertcount,
194 unsigned tfb_stream, struct gl_buffer_object *indirect);
195
196
197 void
198 _vbo_draw_indirect(struct gl_context *ctx, GLuint mode,
199 struct gl_buffer_object *indirect_data,
200 GLsizeiptr indirect_offset, unsigned draw_count,
201 unsigned stride,
202 struct gl_buffer_object *indirect_draw_count_buffer,
203 GLsizeiptr indirect_draw_count_offset,
204 const struct _mesa_index_buffer *ib);
205
206
207 void
208 vbo_split_prims(struct gl_context *ctx,
209 const struct gl_vertex_array *arrays,
210 const struct _mesa_prim *prim,
211 GLuint nr_prims,
212 const struct _mesa_index_buffer *ib,
213 GLuint min_index,
214 GLuint max_index,
215 vbo_draw_func draw,
216 const struct split_limits *limits);
217
218
219 void
220 vbo_delete_minmax_cache(struct gl_buffer_object *bufferObj);
221
222 void
223 vbo_get_minmax_indices(struct gl_context *ctx, const struct _mesa_prim *prim,
224 const struct _mesa_index_buffer *ib,
225 GLuint *min_index, GLuint *max_index, GLuint nr_prims);
226
227 void
228 vbo_use_buffer_objects(struct gl_context *ctx);
229
230 void
231 vbo_always_unmap_buffers(struct gl_context *ctx);
232
233 void
234 vbo_set_draw_func(struct gl_context *ctx, vbo_draw_func func);
235
236 void
237 vbo_sw_primitive_restart(struct gl_context *ctx,
238 const struct _mesa_prim *prim,
239 GLuint nr_prims,
240 const struct _mesa_index_buffer *ib,
241 struct gl_buffer_object *indirect);
242
243
244 /**
245 * Utility that tracks and updates the current array entries.
246 */
247 struct vbo_inputs
248 {
249 /**
250 * Array of inputs to be set to the _DrawArrays pointer.
251 * The array contains pointers into the _DrawVAO and to the vbo modules
252 * current values. The array of pointers is updated incrementally
253 * based on the current and vertex_processing_mode values below.
254 */
255 struct gl_vertex_array inputs[VERT_ATTRIB_MAX];
256 /** Those VERT_BIT_'s where the inputs array point to current values. */
257 GLbitfield current;
258 /** Store which aliasing current values - generics or materials - are set. */
259 gl_vertex_processing_mode vertex_processing_mode;
260 };
261
262
263 /**
264 * Set the recalculate_inputs flag.
265 * The method should in the longer run be replaced with listening for the
266 * DriverFlags.NewArray flag in NewDriverState. But for now ...
267 */
268 void
269 _vbo_set_recalculate_inputs(struct gl_context *ctx);
270
271
272 /**
273 * Initialize inputs.
274 */
275 void
276 _vbo_init_inputs(struct vbo_inputs *inputs);
277
278
279 /**
280 * Update the gl_vertex_array array inside the vbo_inputs structure
281 * provided the current _VPMode, the provided vao and
282 * the vao's enabled arrays filtered by the filter bitmask.
283 */
284 void
285 _vbo_update_inputs(struct gl_context *ctx, struct vbo_inputs *inputs);
286
287
288 void GLAPIENTRY
289 _es_Color4f(GLfloat r, GLfloat g, GLfloat b, GLfloat a);
290
291 void GLAPIENTRY
292 _es_Normal3f(GLfloat x, GLfloat y, GLfloat z);
293
294 void GLAPIENTRY
295 _es_MultiTexCoord4f(GLenum target, GLfloat s, GLfloat t, GLfloat r, GLfloat q);
296
297 void GLAPIENTRY
298 _es_Materialfv(GLenum face, GLenum pname, const GLfloat *params);
299
300 void GLAPIENTRY
301 _es_Materialf(GLenum face, GLenum pname, GLfloat param);
302
303 void GLAPIENTRY
304 _es_VertexAttrib4f(GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w);
305
306 void GLAPIENTRY
307 _es_VertexAttrib1f(GLuint indx, GLfloat x);
308
309 void GLAPIENTRY
310 _es_VertexAttrib1fv(GLuint indx, const GLfloat* values);
311
312 void GLAPIENTRY
313 _es_VertexAttrib2f(GLuint indx, GLfloat x, GLfloat y);
314
315 void GLAPIENTRY
316 _es_VertexAttrib2fv(GLuint indx, const GLfloat* values);
317
318 void GLAPIENTRY
319 _es_VertexAttrib3f(GLuint indx, GLfloat x, GLfloat y, GLfloat z);
320
321 void GLAPIENTRY
322 _es_VertexAttrib3fv(GLuint indx, const GLfloat* values);
323
324 void GLAPIENTRY
325 _es_VertexAttrib4fv(GLuint indx, const GLfloat* values);
326
327 #ifdef __cplusplus
328 } // extern "C"
329 #endif
330
331 #endif