Commit 35c71403 authored by Sam Lantinga's avatar Sam Lantinga

Preliminary support for YUV textures

--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%403239
parent 6968453f
...@@ -34,6 +34,7 @@ ...@@ -34,6 +34,7 @@
#include <OpenGL/OpenGL.h> #include <OpenGL/OpenGL.h>
#endif #endif
/* OpenGL renderer implementation */ /* OpenGL renderer implementation */
/* Details on optimizing the texture path on Mac OS X: /* Details on optimizing the texture path on Mac OS X:
...@@ -112,7 +113,8 @@ SDL_RenderDriver GL_RenderDriver = { ...@@ -112,7 +113,8 @@ SDL_RenderDriver GL_RenderDriver = {
SDL_PIXELFORMAT_BGR888, SDL_PIXELFORMAT_BGR888,
SDL_PIXELFORMAT_ARGB8888, SDL_PIXELFORMAT_ARGB8888,
SDL_PIXELFORMAT_ABGR8888, SDL_PIXELFORMAT_ABGR8888,
SDL_PIXELFORMAT_ARGB2101010}, SDL_PIXELFORMAT_ARGB2101010,
SDL_PIXELFORMAT_UYVY},
0, 0,
0} 0}
}; };
...@@ -502,6 +504,20 @@ GL_CreateTexture(SDL_Renderer * renderer, SDL_Texture * texture) ...@@ -502,6 +504,20 @@ GL_CreateTexture(SDL_Renderer * renderer, SDL_Texture * texture)
format = GL_BGRA; format = GL_BGRA;
type = GL_UNSIGNED_INT_2_10_10_10_REV; type = GL_UNSIGNED_INT_2_10_10_10_REV;
break; break;
case SDL_PIXELFORMAT_UYVY:
// if (renderdata->GL_MESA_ycbcr_texture) {
// internalFormat = 3;
// format = GL_YCBCR_MESA;
// type = GL_UNSIGNED_SHORT_8_8_MESA;
// } else if (renderdata->GL_APPLE_ycbcr_422) {
internalFormat = GL_RGB8;
format = GL_YCBCR_422_APPLE;
type = GL_UNSIGNED_SHORT_8_8_APPLE;
// } else {
// SDL_SetError("Unsupported texture format");
// return -1;
// }
break;
default: default:
SDL_SetError("Unsupported texture format"); SDL_SetError("Unsupported texture format");
return -1; return -1;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment