OSDN Git Service

mesa: Massage the interface to more closely resemble ARB_map_buffer_range
authorJosé Fonseca <jfonseca@vmware.com>
Tue, 3 Mar 2009 18:52:51 +0000 (18:52 +0000)
committerJosé Fonseca <jfonseca@vmware.com>
Tue, 3 Mar 2009 18:52:51 +0000 (18:52 +0000)
src/mesa/state_tracker/st_cb_bufferobjects.c
src/mesa/vbo/vbo_exec_draw.c

index 28e387c..526fc95 100644 (file)
@@ -218,6 +218,7 @@ st_bufferobj_map_range(GLcontext *ctx, GLenum target,
    struct pipe_context *pipe = st_context(ctx)->pipe;
    struct st_buffer_object *st_obj = st_buffer_object(obj);
    GLuint flags = 0;
+   char *map;
 
    if (access & GL_MAP_WRITE_BIT)
       flags |= PIPE_BUFFER_USAGE_CPU_WRITE;
@@ -231,8 +232,12 @@ st_bufferobj_map_range(GLcontext *ctx, GLenum target,
    if (access & MESA_MAP_NOWAIT_BIT)
       flags |= PIPE_BUFFER_USAGE_DONTBLOCK;
 
-   obj->Pointer = pipe_buffer_map(pipe->screen, st_obj->buffer, flags);
-   return obj->Pointer;
+   map = pipe_buffer_map_range(pipe->screen, st_obj->buffer, offset, length, flags);
+   /* FIXME: some code expects this to point to the buffer start, which means that
+    * the range might not be respected in all circumstances
+    */
+   obj->Pointer = map ? map - offset : NULL;
+   return map;
 }
 
 
index 38b6c56..b08909c 100644 (file)
@@ -281,11 +281,8 @@ void vbo_exec_vtx_map( struct vbo_exec_context *exec )
                                                 MESA_MAP_NOWAIT_BIT),
                                                exec->vtx.bufferobj);
    }
-
-   if (exec->vtx.buffer_map) {
-      exec->vtx.buffer_map += exec->vtx.buffer_used / sizeof(float);
-   }
-   else {
+   
+   if (!exec->vtx.buffer_map) {
       exec->vtx.buffer_used = 0;
 
       ctx->Driver.BufferData(ctx, target,