opengles2: Texture names are GLuint, not GLenum.

This commit is contained in:
Ryan C. Gordon 2022-10-03 12:00:38 -04:00
parent 01c5554f0e
commit 321ca1091d
No known key found for this signature in database
GPG Key ID: FA148B892AB48044
1 changed files with 3 additions and 3 deletions

View File

@ -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;