Re: [Mesa-dev] [PATCH] mesa: Disallow GL_RED/GL_RG with half-floats on GLES2.

2017-10-12 Thread Mark Janes
Tested-by: Mark Janes Eric Anholt writes: > Sure, you'd think that the combination of GL_OES_texture_half_float and > GL_EXT_texture_rg would mean that GL_RG16F exists, but it doesn't. > > Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=103227 > Fixes: c16a7443e999 ("mesa: Expose GL_OES_

Re: [Mesa-dev] [PATCH] mesa: Disallow GL_RED/GL_RG with half-floats on GLES2.

2017-10-11 Thread Nicolai Hähnle
On 11.10.2017 23:17, Eric Anholt wrote: Sure, you'd think that the combination of GL_OES_texture_half_float and GL_EXT_texture_rg would mean that GL_RG16F exists, but it doesn't. Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=103227 Fixes: c16a7443e999 ("mesa: Expose GL_OES_required_inte

[Mesa-dev] [PATCH] mesa: Disallow GL_RED/GL_RG with half-floats on GLES2.

2017-10-11 Thread Eric Anholt
Sure, you'd think that the combination of GL_OES_texture_half_float and GL_EXT_texture_rg would mean that GL_RG16F exists, but it doesn't. Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=103227 Fixes: c16a7443e999 ("mesa: Expose GL_OES_required_internalformat on GLES contexts.") --- Appar