336765c9117527fd8259f41180240e93f7a7d46f
[mesa.git] / src / mesa / vbo / vbo_exec.h
1 /**************************************************************************
2
3 Copyright 2002 VMware, Inc.
4
5 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 on the rights to use, copy, modify, merge, publish, distribute, sub
11 license, and/or sell copies of the Software, and to permit persons to whom
12 the Software is furnished to do so, subject to the following conditions:
13
14 The above copyright notice and this permission notice (including the next
15 paragraph) shall be included in all copies or substantial portions of the
16 Software.
17
18 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20 FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
21 VMWARE AND/OR THEIR SUPPLIERS BE LIABLE FOR ANY CLAIM,
22 DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
23 OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
24 USE OR OTHER DEALINGS IN THE SOFTWARE.
25
26 **************************************************************************/
27
28 /*
29 * Authors:
30 * Keith Whitwell <keithw@vmware.com>
31 *
32 */
33
34 #ifndef VBO_EXEC_H
35 #define VBO_EXEC_H
36
37 #include "main/dd.h"
38 #include "main/imports.h"
39 #include "vbo.h"
40 #include "vbo_attrib.h"
41
42
43 /**
44 * Max number of primitives (number of glBegin/End pairs) per VBO.
45 */
46 #define VBO_MAX_PRIM 64
47
48
49 struct vbo_exec_eval1_map {
50 struct gl_1d_map *map;
51 GLuint sz;
52 };
53
54 struct vbo_exec_eval2_map {
55 struct gl_2d_map *map;
56 GLuint sz;
57 };
58
59
60
61 struct vbo_exec_copied_vtx {
62 fi_type buffer[VBO_ATTRIB_MAX * 4 * VBO_MAX_COPIED_VERTS];
63 GLuint nr;
64 };
65
66
67 struct vbo_exec_context
68 {
69 struct gl_context *ctx;
70 GLvertexformat vtxfmt;
71 GLvertexformat vtxfmt_noop;
72
73 struct {
74 struct gl_buffer_object *bufferobj;
75
76 GLuint vertex_size; /* in dwords */
77 GLuint vertex_size_no_pos;
78
79 struct _mesa_prim prim[VBO_MAX_PRIM];
80 GLuint prim_count;
81
82 fi_type *buffer_map;
83 fi_type *buffer_ptr; /* cursor, points into buffer */
84 GLuint buffer_used; /* in bytes */
85 unsigned buffer_offset; /* only for persistent mappings */
86 fi_type vertex[VBO_ATTRIB_MAX*4]; /* current vertex */
87
88 GLuint vert_count; /**< Number of vertices currently in buffer */
89 GLuint max_vert; /**< Max number of vertices allowed in buffer */
90 struct vbo_exec_copied_vtx copied;
91
92 GLbitfield64 enabled; /**< mask of enabled vbo arrays. */
93
94 /* Keep these packed in a structure for faster access. */
95 struct {
96 GLenum16 type; /**< GL_FLOAT, GL_DOUBLE, GL_INT, etc */
97 GLubyte active_size; /**< number of components, but can shrink */
98 GLubyte size; /**< number of components (1..4) */
99 } attr[VBO_ATTRIB_MAX];
100
101 /** pointers into the current 'vertex' array, declared above */
102 fi_type *attrptr[VBO_ATTRIB_MAX];
103 } vtx;
104
105 struct {
106 GLboolean recalculate_maps;
107 struct vbo_exec_eval1_map map1[VERT_ATTRIB_MAX];
108 struct vbo_exec_eval2_map map2[VERT_ATTRIB_MAX];
109 } eval;
110
111 #ifndef NDEBUG
112 GLint flush_call_depth;
113 #endif
114 };
115
116
117
118 void
119 vbo_exec_init(struct gl_context *ctx, bool use_buffer_objects);
120
121 void
122 vbo_exec_destroy(struct gl_context *ctx);
123
124 void
125 vbo_exec_vtx_init(struct vbo_exec_context *exec, bool use_buffer_objects);
126
127 void
128 vbo_exec_vtx_destroy(struct vbo_exec_context *exec);
129
130 void
131 vbo_exec_vtx_flush(struct vbo_exec_context *exec);
132
133 void
134 vbo_exec_vtx_map(struct vbo_exec_context *exec);
135
136 void
137 vbo_exec_eval_update(struct vbo_exec_context *exec);
138
139 void
140 vbo_exec_do_EvalCoord2f(struct vbo_exec_context *exec, GLfloat u, GLfloat v);
141
142 void
143 vbo_exec_do_EvalCoord1f(struct vbo_exec_context *exec, GLfloat u);
144
145 #endif