Explorar el Código

opengles2: Texture names are GLuint, not GLenum.

Ryan C. Gordon hace 3 años
padre
commit
321ca1091d
Se han modificado 1 ficheros con 3 adiciones y 3 borrados
  1. 3 3
      src/render/opengles2/SDL_render_gles2.c

+ 3 - 3
src/render/opengles2/SDL_render_gles2.c

@@ -64,7 +64,7 @@ struct GLES2_FBOList
 
 typedef struct GLES2_TextureData
 {
-    GLenum texture;
+    GLuint texture;
     GLenum texture_type;
     GLenum pixel_format;
     GLenum pixel_type;
@@ -74,8 +74,8 @@ typedef struct GLES2_TextureData
     /* YUV texture support */
     SDL_bool yuv;
     SDL_bool nv12;
-    GLenum texture_v;
-    GLenum texture_u;
+    GLuint texture_v;
+    GLuint texture_u;
 #endif
     GLES2_FBOList *fbo;
 } GLES2_TextureData;