Module: Mesa
Branch: master
Commit: 460e5b11c98e07d12c655e5bf2f1e993d05bd7a1
URL:    
http://cgit.freedesktop.org/mesa/mesa/commit/?id=460e5b11c98e07d12c655e5bf2f1e993d05bd7a1

Author: Brian Paul <[email protected]>
Date:   Sat Mar  7 13:30:03 2009 -0700

mesa: s/int/GLsizeiptr/ to silence warning with 64-bit build

---

 src/mesa/vbo/vbo_exec_draw.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/src/mesa/vbo/vbo_exec_draw.c b/src/mesa/vbo/vbo_exec_draw.c
index b378745..5381cc4 100644
--- a/src/mesa/vbo/vbo_exec_draw.c
+++ b/src/mesa/vbo/vbo_exec_draw.c
@@ -204,7 +204,7 @@ static void vbo_exec_bind_arrays( GLcontext *ctx )
 
          if (exec->vtx.bufferobj->Name) {
             /* a real buffer obj: Ptr is an offset, not a pointer*/
-            int offset;
+            GLsizeiptr offset;
             assert(exec->vtx.bufferobj->Pointer);  /* buf should be mapped */
             offset = (GLbyte *) data - (GLbyte *) exec->vtx.bufferobj->Pointer;
             assert(offset >= 0);

_______________________________________________
mesa-commit mailing list
[email protected]
http://lists.freedesktop.org/mailman/listinfo/mesa-commit

Reply via email to