summaryrefslogtreecommitdiff
path: root/src/mesa/vbo/vbo_exec_array.c
diff options
context:
space:
mode:
authorAapo Tahkola <aapo@aapo-desktop.(none)>2007-01-18 04:17:56 +0200
committerAapo Tahkola <aapo@aapo-desktop.(none)>2007-01-18 04:17:56 +0200
commit2cb3594af9cd1434aa2c408cd6f8d51bcd12e8ea (patch)
tree75a56df5e062424fe324641247d29c04b92e449c /src/mesa/vbo/vbo_exec_array.c
parentfea6e5a69588012cf0373f36dff99a45b0202f55 (diff)
Fix invalid enums passed to MapBuffer
Diffstat (limited to 'src/mesa/vbo/vbo_exec_array.c')
-rw-r--r--src/mesa/vbo/vbo_exec_array.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/vbo/vbo_exec_array.c b/src/mesa/vbo/vbo_exec_array.c
index cec353cf43..e0a6240c2a 100644
--- a/src/mesa/vbo/vbo_exec_array.c
+++ b/src/mesa/vbo/vbo_exec_array.c
@@ -334,7 +334,7 @@ vbo_exec_DrawElements(GLenum mode, GLsizei count, GLenum type, const GLvoid *ind
if (ctx->Array.ElementArrayBufferObj->Name) {
const GLvoid *map = ctx->Driver.MapBuffer(ctx,
GL_ELEMENT_ARRAY_BUFFER_ARB,
- GL_DYNAMIC_READ_ARB,
+ GL_READ_ONLY,
ctx->Array.ElementArrayBufferObj);
max_index = get_max_index(count, type, ADD_POINTERS(map, indices));