Sfoglia il codice sorgente

mesa: remove misleading gles checks for formatquery

Testing for gles there is just confusing - this is about target being
supported, if it was valid at all was already determined earlier
(in _legal_parameters). It didn't make sense at all in any case, since
it would only have said false there for gles for 2d but not 2d arrays etc.

Reviewed-by: Alejandro Piñeiro <apinheiro@igalia.com>
tags/18.1-branchpoint
Roland Scheidegger 7 anni fa
parent
commit
09dc4f9012
1 ha cambiato i file con 1 aggiunte e 3 eliminazioni
  1. 1
    3
      src/mesa/main/formatquery.c

+ 1
- 3
src/mesa/main/formatquery.c Vedi File

@@ -392,14 +392,12 @@ _is_target_supported(struct gl_context *ctx, GLenum target)
* implementation the "unsupported" answer should be given.
* This is not an error."
*
* For OpenGL ES, queries can only be used with GL_RENDERBUFFER or MS.
* Note that legality of targets has already been verified.
*/
switch(target){
case GL_TEXTURE_1D:
case GL_TEXTURE_2D:
case GL_TEXTURE_3D:
if (!_mesa_is_desktop_gl(ctx))
return false;
break;

case GL_TEXTURE_1D_ARRAY:

Loading…
Annulla
Salva