mirror of https://github.com/encounter/SDL.git
opengles2: Texture names are GLuint, not GLenum.
This commit is contained in:
parent
01c5554f0e
commit
321ca1091d
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue