diff options
Diffstat (limited to 'src/mesa/vbo/vbo_context.h')
-rw-r--r-- | src/mesa/vbo/vbo_context.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mesa/vbo/vbo_context.h b/src/mesa/vbo/vbo_context.h index 2a762c85c63..70757d0ea4d 100644 --- a/src/mesa/vbo/vbo_context.h +++ b/src/mesa/vbo/vbo_context.h @@ -175,6 +175,7 @@ vbo_attrtype_to_integer_flag(GLenum format) return GL_FALSE; case GL_INT: case GL_UNSIGNED_INT: + case GL_UNSIGNED_INT64_ARB: return GL_TRUE; default: assert(0); @@ -189,6 +190,7 @@ vbo_attrtype_to_double_flag(GLenum format) case GL_FLOAT: case GL_INT: case GL_UNSIGNED_INT: + case GL_UNSIGNED_INT64_ARB: return GL_FALSE; case GL_DOUBLE: return GL_TRUE; |