vbo_exec_draw.c revision 492b69f3be3e355064c67bc6f4a30d40e997ce9d
15821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)/*
25821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles) * Mesa 3-D graphics library
35821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles) * Version:  7.2
45821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles) *
55d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles) * Copyright (C) 1999-2008  Brian Paul   All Rights Reserved.
65d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles) *
75821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles) * Permission is hereby granted, free of charge, to any person obtaining a
85821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles) * copy of this software and associated documentation files (the "Software"),
990dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles) * to deal in the Software without restriction, including without limitation
10f2477e01787aa58f445919b809d89e252beef54fTorne (Richard Coles) * the rights to use, copy, modify, merge, publish, distribute, sublicense,
11a3f6a49ab37290eeeb8db0f41ec0f1cb74a68be7Torne (Richard Coles) * and/or sell copies of the Software, and to permit persons to whom the
12c5cede9ae108bb15f6b7a8aea21c7e1fefa2834cBen Murdoch * Software is furnished to do so, subject to the following conditions:
132a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles) *
145821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles) * The above copyright notice and this permission notice shall be included
1568043e1e95eeb07d5cae7aca370b26518b0867d6Torne (Richard Coles) * in all copies or substantial portions of the Software.
165821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles) *
17a02191e04bc25c4935f804f2c080ae28663d096dBen Murdoch * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
18a02191e04bc25c4935f804f2c080ae28663d096dBen Murdoch * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19a02191e04bc25c4935f804f2c080ae28663d096dBen Murdoch * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
20a02191e04bc25c4935f804f2c080ae28663d096dBen Murdoch * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
21a02191e04bc25c4935f804f2c080ae28663d096dBen Murdoch * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
225821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles) * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
235821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles) *
245821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles) * Authors:
255821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles) *    Keith Whitwell <keith@tungstengraphics.com>
265821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles) */
275821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
285821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)#include "main/glheader.h"
295821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)#include "main/bufferobj.h"
305821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)#include "main/compiler.h"
315821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)#include "main/context.h"
325d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)#include "main/enums.h"
33a3f6a49ab37290eeeb8db0f41ec0f1cb74a68be7Torne (Richard Coles)#include "main/mfeatures.h"
34a02191e04bc25c4935f804f2c080ae28663d096dBen Murdoch#include "main/state.h"
35a02191e04bc25c4935f804f2c080ae28663d096dBen Murdoch#include "main/vtxfmt.h"
365821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
375d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)#include "vbo_context.h"
385d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)#include "vbo_noop.h"
395821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
40c5cede9ae108bb15f6b7a8aea21c7e1fefa2834cBen Murdoch
41c5cede9ae108bb15f6b7a8aea21c7e1fefa2834cBen Murdoch#if FEATURE_beginend
42c5cede9ae108bb15f6b7a8aea21c7e1fefa2834cBen Murdoch
435821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
44c5cede9ae108bb15f6b7a8aea21c7e1fefa2834cBen Murdochstatic void
455c02ac1a9c1b504631c0a3d2b6e737b5d738bae1Bo Liuvbo_exec_debug_verts( struct vbo_exec_context *exec )
465821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles){
475821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)   GLuint count = exec->vtx.vert_count;
485821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)   GLuint i;
495821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
505821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)   printf("%s: %u vertices %d primitives, %d vertsize\n",
515821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)	  __FUNCTION__,
525821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)	  count,
535821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)	  exec->vtx.prim_count,
545821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)	  exec->vtx.vertex_size);
555d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)
565d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)   for (i = 0 ; i < exec->vtx.prim_count ; i++) {
575d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)      struct _mesa_prim *prim = &exec->vtx.prim[i];
585821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)      printf("   prim %d: %s%s %d..%d %s %s\n",
59a3f6a49ab37290eeeb8db0f41ec0f1cb74a68be7Torne (Richard Coles)	     i,
60a3f6a49ab37290eeeb8db0f41ec0f1cb74a68be7Torne (Richard Coles)	     _mesa_lookup_prim_by_nr(prim->mode),
61a3f6a49ab37290eeeb8db0f41ec0f1cb74a68be7Torne (Richard Coles)	     prim->weak ? " (weak)" : "",
62a02191e04bc25c4935f804f2c080ae28663d096dBen Murdoch	     prim->start,
63a02191e04bc25c4935f804f2c080ae28663d096dBen Murdoch	     prim->start + prim->count,
64a02191e04bc25c4935f804f2c080ae28663d096dBen Murdoch	     prim->begin ? "BEGIN" : "(wrap)",
65a02191e04bc25c4935f804f2c080ae28663d096dBen Murdoch	     prim->end ? "END" : "(wrap)");
66cedac228d2dd51db4b79ea1e72c7f249408ee061Torne (Richard Coles)   }
67a02191e04bc25c4935f804f2c080ae28663d096dBen Murdoch}
68a02191e04bc25c4935f804f2c080ae28663d096dBen Murdoch
69a02191e04bc25c4935f804f2c080ae28663d096dBen Murdoch
70a02191e04bc25c4935f804f2c080ae28663d096dBen Murdoch/*
71a02191e04bc25c4935f804f2c080ae28663d096dBen Murdoch * NOTE: Need to have calculated primitives by this point -- do it on the fly.
72a02191e04bc25c4935f804f2c080ae28663d096dBen Murdoch * NOTE: Old 'parity' issue is gone.
73a02191e04bc25c4935f804f2c080ae28663d096dBen Murdoch */
74a02191e04bc25c4935f804f2c080ae28663d096dBen Murdochstatic GLuint
755821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)vbo_copy_vertices( struct vbo_exec_context *exec )
765821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles){
775821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)   GLuint nr = exec->vtx.prim[exec->vtx.prim_count-1].count;
785821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)   GLuint ovf, i;
795821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)   GLuint sz = exec->vtx.vertex_size;
805821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)   GLfloat *dst = exec->vtx.copied.buffer;
815821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)   const GLfloat *src = (exec->vtx.buffer_map +
825821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)                         exec->vtx.prim[exec->vtx.prim_count-1].start *
835821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)                         exec->vtx.vertex_size);
845821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
855821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
8668043e1e95eeb07d5cae7aca370b26518b0867d6Torne (Richard Coles)   switch (exec->ctx->Driver.CurrentExecPrimitive) {
875821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)   case GL_POINTS:
885821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)      return 0;
895821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)   case GL_LINES:
905821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)      ovf = nr&1;
915821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)      for (i = 0 ; i < ovf ; i++)
925821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)	 memcpy( dst+i*sz, src+(nr-ovf+i)*sz, sz * sizeof(GLfloat) );
935821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)      return i;
945821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)   case GL_TRIANGLES:
955821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)      ovf = nr%3;
965821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)      for (i = 0 ; i < ovf ; i++)
975821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)	 memcpy( dst+i*sz, src+(nr-ovf+i)*sz, sz * sizeof(GLfloat) );
985821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)      return i;
995821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)   case GL_QUADS:
1005821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)      ovf = nr&3;
101cedac228d2dd51db4b79ea1e72c7f249408ee061Torne (Richard Coles)      for (i = 0 ; i < ovf ; i++)
102cedac228d2dd51db4b79ea1e72c7f249408ee061Torne (Richard Coles)	 memcpy( dst+i*sz, src+(nr-ovf+i)*sz, sz * sizeof(GLfloat) );
1035821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)      return i;
1045821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)   case GL_LINE_STRIP:
1055d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)      if (nr == 0) {
1065821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)	 return 0;
1075821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)      }
10890dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)      else {
10990dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)	 memcpy( dst, src+(nr-1)*sz, sz * sizeof(GLfloat) );
11090dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)	 return 1;
1115d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)      }
11290dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)   case GL_LINE_LOOP:
11390dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)   case GL_TRIANGLE_FAN:
11490dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)   case GL_POLYGON:
1155821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)      if (nr == 0) {
1165821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)	 return 0;
1175d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)      }
118      else if (nr == 1) {
119	 memcpy( dst, src+0, sz * sizeof(GLfloat) );
120	 return 1;
121      }
122      else {
123	 memcpy( dst, src+0, sz * sizeof(GLfloat) );
124	 memcpy( dst+sz, src+(nr-1)*sz, sz * sizeof(GLfloat) );
125	 return 2;
126      }
127   case GL_TRIANGLE_STRIP:
128      /* no parity issue, but need to make sure the tri is not drawn twice */
129      if (nr & 1) {
130	 exec->vtx.prim[exec->vtx.prim_count-1].count--;
131      }
132      /* fallthrough */
133   case GL_QUAD_STRIP:
134      switch (nr) {
135      case 0:
136         ovf = 0;
137         break;
138      case 1:
139         ovf = 1;
140         break;
141      default:
142         ovf = 2 + (nr & 1);
143         break;
144      }
145      for (i = 0 ; i < ovf ; i++)
146	 memcpy( dst+i*sz, src+(nr-ovf+i)*sz, sz * sizeof(GLfloat) );
147      return i;
148   case PRIM_OUTSIDE_BEGIN_END:
149      return 0;
150   default:
151      assert(0);
152      return 0;
153   }
154}
155
156
157
158/* TODO: populate these as the vertex is defined:
159 */
160static void
161vbo_exec_bind_arrays( struct gl_context *ctx )
162{
163   struct vbo_context *vbo = vbo_context(ctx);
164   struct vbo_exec_context *exec = &vbo->exec;
165   struct gl_client_array *arrays = exec->vtx.arrays;
166   const GLuint count = exec->vtx.vert_count;
167   const GLuint *map;
168   GLuint attr;
169   GLbitfield64 varying_inputs = 0x0;
170
171   /* Install the default (ie Current) attributes first, then overlay
172    * all active ones.
173    */
174   switch (get_program_mode(exec->ctx)) {
175   case VP_NONE:
176      for (attr = 0; attr < VERT_ATTRIB_FF_MAX; attr++) {
177         exec->vtx.inputs[attr] = &vbo->currval[VBO_ATTRIB_POS+attr];
178      }
179      for (attr = 0; attr < MAT_ATTRIB_MAX; attr++) {
180         ASSERT(VERT_ATTRIB_GENERIC(attr) < Elements(exec->vtx.inputs));
181         exec->vtx.inputs[VERT_ATTRIB_GENERIC(attr)] =
182            &vbo->currval[VBO_ATTRIB_MAT_FRONT_AMBIENT+attr];
183      }
184      map = vbo->map_vp_none;
185      break;
186   case VP_NV:
187   case VP_ARB:
188      /* The aliasing of attributes for NV vertex programs has already
189       * occurred.  NV vertex programs cannot access material values,
190       * nor attributes greater than VERT_ATTRIB_TEX7.
191       */
192      for (attr = 0; attr < VERT_ATTRIB_FF_MAX; attr++) {
193         exec->vtx.inputs[attr] = &vbo->currval[VBO_ATTRIB_POS+attr];
194      }
195      for (attr = 0; attr < VERT_ATTRIB_GENERIC_MAX; attr++) {
196         ASSERT(VERT_ATTRIB_GENERIC(attr) < Elements(exec->vtx.inputs));
197         exec->vtx.inputs[VERT_ATTRIB_GENERIC(attr)] =
198            &vbo->currval[VBO_ATTRIB_GENERIC0+attr];
199      }
200      map = vbo->map_vp_arb;
201
202      /* check if VERT_ATTRIB_POS is not read but VERT_BIT_GENERIC0 is read.
203       * In that case we effectively need to route the data from
204       * glVertexAttrib(0, val) calls to feed into the GENERIC0 input.
205       */
206      if ((ctx->VertexProgram._Current->Base.InputsRead & VERT_BIT_POS) == 0 &&
207          (ctx->VertexProgram._Current->Base.InputsRead & VERT_BIT_GENERIC0)) {
208         exec->vtx.inputs[VERT_ATTRIB_GENERIC0] = exec->vtx.inputs[0];
209         exec->vtx.attrsz[VERT_ATTRIB_GENERIC0] = exec->vtx.attrsz[0];
210         exec->vtx.attrptr[VERT_ATTRIB_GENERIC0] = exec->vtx.attrptr[0];
211         exec->vtx.attrsz[0] = 0;
212      }
213      break;
214   default:
215      assert(0);
216   }
217
218   for (attr = 0; attr < VERT_ATTRIB_MAX ; attr++) {
219      const GLuint src = map[attr];
220
221      if (exec->vtx.attrsz[src]) {
222	 GLsizeiptr offset = (GLbyte *)exec->vtx.attrptr[src] -
223	    (GLbyte *)exec->vtx.vertex;
224
225         /* override the default array set above */
226         ASSERT(attr < Elements(exec->vtx.inputs));
227         ASSERT(attr < Elements(exec->vtx.arrays)); /* arrays[] */
228         exec->vtx.inputs[attr] = &arrays[attr];
229
230         if (_mesa_is_bufferobj(exec->vtx.bufferobj)) {
231            /* a real buffer obj: Ptr is an offset, not a pointer*/
232            assert(exec->vtx.bufferobj->Pointer);  /* buf should be mapped */
233            assert(offset >= 0);
234            arrays[attr].Ptr = (GLubyte *)exec->vtx.bufferobj->Offset + offset;
235         }
236         else {
237            /* Ptr into ordinary app memory */
238            arrays[attr].Ptr = (GLubyte *)exec->vtx.buffer_map + offset;
239         }
240	 arrays[attr].Size = exec->vtx.attrsz[src];
241	 arrays[attr].StrideB = exec->vtx.vertex_size * sizeof(GLfloat);
242	 arrays[attr].Stride = exec->vtx.vertex_size * sizeof(GLfloat);
243	 arrays[attr].Type = exec->vtx.attrtype[src];
244	 arrays[attr].Integer =
245               vbo_attrtype_to_integer_flag(exec->vtx.attrtype[src]);
246         arrays[attr].Format = GL_RGBA;
247	 arrays[attr].Enabled = 1;
248         arrays[attr]._ElementSize = arrays[attr].Size * sizeof(GLfloat);
249         _mesa_reference_buffer_object(ctx,
250                                       &arrays[attr].BufferObj,
251                                       exec->vtx.bufferobj);
252	 arrays[attr]._MaxElement = count; /* ??? */
253
254         varying_inputs |= VERT_BIT(attr);
255      }
256   }
257
258   _mesa_set_varying_vp_inputs( ctx, varying_inputs );
259   ctx->NewDriverState |= ctx->DriverFlags.NewArray;
260}
261
262
263/**
264 * Unmap the VBO.  This is called before drawing.
265 */
266static void
267vbo_exec_vtx_unmap( struct vbo_exec_context *exec )
268{
269   if (_mesa_is_bufferobj(exec->vtx.bufferobj)) {
270      struct gl_context *ctx = exec->ctx;
271
272      if (ctx->Driver.FlushMappedBufferRange) {
273         GLintptr offset = exec->vtx.buffer_used - exec->vtx.bufferobj->Offset;
274         GLsizeiptr length = (exec->vtx.buffer_ptr - exec->vtx.buffer_map) * sizeof(float);
275
276         if (length)
277            ctx->Driver.FlushMappedBufferRange(ctx, offset, length,
278                                               exec->vtx.bufferobj);
279      }
280
281      exec->vtx.buffer_used += (exec->vtx.buffer_ptr -
282                                exec->vtx.buffer_map) * sizeof(float);
283
284      assert(exec->vtx.buffer_used <= VBO_VERT_BUFFER_SIZE);
285      assert(exec->vtx.buffer_ptr != NULL);
286
287      ctx->Driver.UnmapBuffer(ctx, exec->vtx.bufferobj);
288      exec->vtx.buffer_map = NULL;
289      exec->vtx.buffer_ptr = NULL;
290      exec->vtx.max_vert = 0;
291   }
292}
293
294
295/**
296 * Map the vertex buffer to begin storing glVertex, glColor, etc data.
297 */
298void
299vbo_exec_vtx_map( struct vbo_exec_context *exec )
300{
301   struct gl_context *ctx = exec->ctx;
302   const GLenum accessRange = GL_MAP_WRITE_BIT |  /* for MapBufferRange */
303                              GL_MAP_INVALIDATE_RANGE_BIT |
304                              GL_MAP_UNSYNCHRONIZED_BIT |
305                              GL_MAP_FLUSH_EXPLICIT_BIT |
306                              MESA_MAP_NOWAIT_BIT;
307   const GLenum usage = GL_STREAM_DRAW_ARB;
308
309   if (!_mesa_is_bufferobj(exec->vtx.bufferobj))
310      return;
311
312   assert(!exec->vtx.buffer_map);
313   assert(!exec->vtx.buffer_ptr);
314
315   if (VBO_VERT_BUFFER_SIZE > exec->vtx.buffer_used + 1024) {
316      /* The VBO exists and there's room for more */
317      if (exec->vtx.bufferobj->Size > 0) {
318         exec->vtx.buffer_map =
319            (GLfloat *)ctx->Driver.MapBufferRange(ctx,
320                                                  exec->vtx.buffer_used,
321                                                  (VBO_VERT_BUFFER_SIZE -
322                                                   exec->vtx.buffer_used),
323                                                  accessRange,
324                                                  exec->vtx.bufferobj);
325         exec->vtx.buffer_ptr = exec->vtx.buffer_map;
326      }
327      else {
328         exec->vtx.buffer_ptr = exec->vtx.buffer_map = NULL;
329      }
330   }
331
332   if (!exec->vtx.buffer_map) {
333      /* Need to allocate a new VBO */
334      exec->vtx.buffer_used = 0;
335
336      if (ctx->Driver.BufferData(ctx, GL_ARRAY_BUFFER_ARB,
337                                  VBO_VERT_BUFFER_SIZE,
338                                  NULL, usage, exec->vtx.bufferobj)) {
339         /* buffer allocation worked, now map the buffer */
340         exec->vtx.buffer_map =
341            (GLfloat *)ctx->Driver.MapBufferRange(ctx,
342                                                  0, VBO_VERT_BUFFER_SIZE,
343                                                  accessRange,
344                                                  exec->vtx.bufferobj);
345      }
346      else {
347         _mesa_error(ctx, GL_OUT_OF_MEMORY, "VBO allocation");
348         exec->vtx.buffer_map = NULL;
349      }
350   }
351
352   exec->vtx.buffer_ptr = exec->vtx.buffer_map;
353
354   if (!exec->vtx.buffer_map) {
355      /* out of memory */
356      _mesa_install_exec_vtxfmt( ctx, &exec->vtxfmt_noop );
357   }
358   else {
359      if (_mesa_using_noop_vtxfmt(ctx->Exec)) {
360         /* The no-op functions are installed so switch back to regular
361          * functions.  We do this test just to avoid frequent and needless
362          * calls to _mesa_install_exec_vtxfmt().
363          */
364         _mesa_install_exec_vtxfmt(ctx, &exec->vtxfmt);
365      }
366   }
367
368   if (0)
369      printf("map %d..\n", exec->vtx.buffer_used);
370}
371
372
373
374/**
375 * Execute the buffer and save copied verts.
376 * \param keep_unmapped  if true, leave the VBO unmapped when we're done.
377 */
378void
379vbo_exec_vtx_flush(struct vbo_exec_context *exec, GLboolean keepUnmapped)
380{
381   if (0)
382      vbo_exec_debug_verts( exec );
383
384   if (exec->vtx.prim_count &&
385       exec->vtx.vert_count) {
386
387      exec->vtx.copied.nr = vbo_copy_vertices( exec );
388
389      if (exec->vtx.copied.nr != exec->vtx.vert_count) {
390	 struct gl_context *ctx = exec->ctx;
391
392	 /* Before the update_state() as this may raise _NEW_VARYING_VP_INPUTS
393          * from _mesa_set_varying_vp_inputs().
394	  */
395	 vbo_exec_bind_arrays( ctx );
396
397         if (ctx->NewState)
398            _mesa_update_state( ctx );
399
400         if (_mesa_is_bufferobj(exec->vtx.bufferobj)) {
401            vbo_exec_vtx_unmap( exec );
402         }
403
404         if (0)
405            printf("%s %d %d\n", __FUNCTION__, exec->vtx.prim_count,
406		   exec->vtx.vert_count);
407
408	 vbo_context(ctx)->draw_prims( ctx,
409				       exec->vtx.prim,
410				       exec->vtx.prim_count,
411				       NULL,
412				       GL_TRUE,
413				       0,
414				       exec->vtx.vert_count - 1,
415				       NULL);
416
417	 /* If using a real VBO, get new storage -- unless asked not to.
418          */
419         if (_mesa_is_bufferobj(exec->vtx.bufferobj) && !keepUnmapped) {
420            vbo_exec_vtx_map( exec );
421         }
422      }
423   }
424
425   /* May have to unmap explicitly if we didn't draw:
426    */
427   if (keepUnmapped &&
428       _mesa_is_bufferobj(exec->vtx.bufferobj) &&
429       exec->vtx.buffer_map) {
430      vbo_exec_vtx_unmap( exec );
431   }
432
433   if (keepUnmapped || exec->vtx.vertex_size == 0)
434      exec->vtx.max_vert = 0;
435   else
436      exec->vtx.max_vert = ((VBO_VERT_BUFFER_SIZE - exec->vtx.buffer_used) /
437                            (exec->vtx.vertex_size * sizeof(GLfloat)));
438
439   exec->vtx.buffer_ptr = exec->vtx.buffer_map;
440   exec->vtx.prim_count = 0;
441   exec->vtx.vert_count = 0;
442}
443
444
445#endif /* FEATURE_beginend */
446