Re: [Mesa-dev] [PATCH 12/13] mesa: Support querying GL_MAX_ELEMENT_INDEX in ES 3

2012-12-11 Thread Matt Turner
On Tue, Dec 11, 2012 at 11:00 AM, Ian Romanick wrote: > On 12/10/2012 02:28 PM, Matt Turner wrote: >> >> The ES 3 spec says that the minumum allowable value is 2^24-1, but the >> GL 4.3 and ARB_ES3_compatibility specs require 2^32-1, so return 2^32-1. >> >> Fixes es3conform's element_index_uint_co

Re: [Mesa-dev] [PATCH 12/13] mesa: Support querying GL_MAX_ELEMENT_INDEX in ES 3

2012-12-11 Thread Ian Romanick
On 12/10/2012 02:28 PM, Matt Turner wrote: The ES 3 spec says that the minumum allowable value is 2^24-1, but the GL 4.3 and ARB_ES3_compatibility specs require 2^32-1, so return 2^32-1. Fixes es3conform's element_index_uint_constants test. --- src/mesa/main/context.c |3 +++ src

Re: [Mesa-dev] [PATCH 12/13] mesa: Support querying GL_MAX_ELEMENT_INDEX in ES 3

2012-12-11 Thread Brian Paul
On 12/10/2012 03:28 PM, Matt Turner wrote: The ES 3 spec says that the minumum allowable value is 2^24-1, but the GL 4.3 and ARB_ES3_compatibility specs require 2^32-1, so return 2^32-1. Fixes es3conform's element_index_uint_constants test. --- src/mesa/main/context.c |3 +++ src

[Mesa-dev] [PATCH 12/13] mesa: Support querying GL_MAX_ELEMENT_INDEX in ES 3

2012-12-10 Thread Matt Turner
The ES 3 spec says that the minumum allowable value is 2^24-1, but the GL 4.3 and ARB_ES3_compatibility specs require 2^32-1, so return 2^32-1. Fixes es3conform's element_index_uint_constants test. --- src/mesa/main/context.c |3 +++ src/mesa/main/get.c |1 + src/mes