mirror of https://github.com/encounter/SDL.git
87894224b6
Eric wing There is a tiny bug in the new overscan code for the SDL_renderer. In SDL_renderer.c, line 1265, the if check for SDL_strcasecmp with "direct3d" needs to be inverted. Instead of: if(SDL_strcasecmp("direct3d", SDL_GetCurrentVideoDriver())) { It should be: if(0 == SDL_strcasecmp("direct3d", SDL_GetCurrentVideoDriver())) { This bug causes the "overscan" mode to pretty much be completely ignored in all cases and all things remain letterboxed (as before the feature). |
||
---|---|---|
.. | ||
direct3d | ||
direct3d11 | ||
metal | ||
opengl | ||
opengles | ||
opengles2 | ||
psp | ||
software | ||
SDL_d3dmath.c | ||
SDL_d3dmath.h | ||
SDL_render.c | ||
SDL_sysrender.h | ||
SDL_yuv_sw.c | ||
SDL_yuv_sw_c.h |