diff options
author | Timothy Arceri <[email protected]> | 2014-08-15 00:16:09 +1000 |
---|---|---|
committer | Timothy Arceri <[email protected]> | 2014-08-27 20:35:56 -1000 |
commit | 3246e11d33b346f904f441fb1772e9e88f29d214 (patch) | |
tree | 4f8830497001bc80afcefaa76e28e9ea733b9ba1 /src/mesa/main/context.c | |
parent | eae9da879f3143507ef0e238a7e4faa87114d54e (diff) |
mesa: implement GL_MAX_VERTEX_ATTRIB_STRIDE
V2: moved test for the VertexAttrib*Pointer() functions
to update_array(), and made constant available for drivers to set
Signed-off-by: Timothy Arceri <[email protected]>
Reviewed-by: Ian Romanick <[email protected]>
Diffstat (limited to 'src/mesa/main/context.c')
-rw-r--r-- | src/mesa/main/context.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mesa/main/context.c b/src/mesa/main/context.c index 232084267d4..fbdbd680a2e 100644 --- a/src/mesa/main/context.c +++ b/src/mesa/main/context.c @@ -670,6 +670,9 @@ _mesa_init_constants(struct gl_constants *consts, gl_api api) ? GL_CONTEXT_CORE_PROFILE_BIT : GL_CONTEXT_COMPATIBILITY_PROFILE_BIT; + /* GL 4.4 */ + consts->MaxVertexAttribStride = 2048; + /** GL_EXT_gpu_shader4 */ consts->MinProgramTexelOffset = -8; consts->MaxProgramTexelOffset = 7; |