mirror of https://github.com/encounter/SDL.git
GLES2/Big-endian: don´t swap datas for yuv textures (Thanks 0x1F9F1 !)
This commit is contained in:
parent
3a69828e87
commit
44c84c0d8e
|
@ -1516,7 +1516,7 @@ GLES2_TexSubImage2D(GLES2_RenderData *data, GLenum target, GLint xoffset, GLint
|
||||||
}
|
}
|
||||||
|
|
||||||
#if SDL_BYTEORDER == SDL_BIG_ENDIAN
|
#if SDL_BYTEORDER == SDL_BIG_ENDIAN
|
||||||
{
|
if (format == GL_RGBA) {
|
||||||
int i;
|
int i;
|
||||||
Uint32 *src32 = (Uint32 *)src;
|
Uint32 *src32 = (Uint32 *)src;
|
||||||
blob2 = (Uint32 *)SDL_malloc(src_pitch * height);
|
blob2 = (Uint32 *)SDL_malloc(src_pitch * height);
|
||||||
|
|
Loading…
Reference in New Issue