Removed SDL_RENDERER_ACCELERATED and SDL_RENDERER_SOFTWARE
These flags are unnecessary and have always been a source of confusion.
This commit is contained in:
parent
3f8dba3713
commit
5fa87e29e7
19 changed files with 37 additions and 92 deletions
|
@ -955,12 +955,6 @@ static void SDLTest_PrintButtonMask(char *text, size_t maxlen, Uint32 flags)
|
|||
static void SDLTest_PrintRendererFlag(char *text, size_t maxlen, Uint32 flag)
|
||||
{
|
||||
switch (flag) {
|
||||
case SDL_RENDERER_SOFTWARE:
|
||||
SDL_snprintfcat(text, maxlen, "Software");
|
||||
break;
|
||||
case SDL_RENDERER_ACCELERATED:
|
||||
SDL_snprintfcat(text, maxlen, "Accelerated");
|
||||
break;
|
||||
case SDL_RENDERER_PRESENTVSYNC:
|
||||
SDL_snprintfcat(text, maxlen, "PresentVSync");
|
||||
break;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue