Adam Strzelecki to SDL

D3D renderer shall try mapping YV12 and I420 (IYUV) to D3D texture formats via FOURCC. This will enable HW acceleration for those formats when driver is capable (most of them are). Note that SDL's IYUV maps I420 FOURCC on Woe.
This commit is contained in:
Sam Lantinga
2009-11-27 03:11:26 +00:00
parent c0587b4d69
commit ef2e845497

View File

@@ -228,6 +228,10 @@ PixelFormatToD3DFMT(Uint32 format)
return D3DFMT_A8R8G8B8;
case SDL_PIXELFORMAT_ARGB2101010:
return D3DFMT_A2R10G10B10;
case SDL_PIXELFORMAT_YV12:
return MAKEFOURCC('Y','V','1','2');
case SDL_PIXELFORMAT_IYUV:
return MAKEFOURCC('I','4','2','0');
case SDL_PIXELFORMAT_UYVY:
return D3DFMT_UYVY;
case SDL_PIXELFORMAT_YUY2: