Re: [Mesa-dev] [PATCH 1/3] meta: Don't enable TEXTURE_RECTANGLE when it's unsupported.

2011-10-04 Thread Ian Romanick
On 10/04/2011 01:55 PM, Kenneth Graunke wrote: In particular, it's not supported on OpenGL ES 1.x. I'd change this text slightly. It's just the current convention that drivers that support NV_texture_rectangle (and some other extensions) don't enable them in ES 1.x. In the future, I'd like

[Mesa-dev] [PATCH 1/3] meta: Don't enable TEXTURE_RECTANGLE when it's unsupported.

2011-10-04 Thread Kenneth Graunke
In particular, it's not supported on OpenGL ES 1.x. Prior to this, none of the OpenGL ES 1.1 conformance tests passed. Signed-off-by: Kenneth Graunke --- src/mesa/drivers/common/meta.c |3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/src/mesa/drivers/common/meta.c b/sr