Browse Source

kmsdrm: don't fool SDL into thinking that changing the physical videomode is done.

Manuel Alfayate Corchete 4 years ago
parent
commit
7b67654872
1 changed files with 0 additions and 14 deletions
  1. 0 14
      src/video/kmsdrm/SDL_kmsdrmvideo.c

+ 0 - 14
src/video/kmsdrm/SDL_kmsdrmvideo.c

@@ -764,7 +764,6 @@ KMSDRM_CreateDevice(int devindex)
     device->VideoInit = KMSDRM_VideoInit;
     device->VideoQuit = KMSDRM_VideoQuit;
     device->GetDisplayModes = KMSDRM_GetDisplayModes;
-    device->SetDisplayMode = KMSDRM_SetDisplayMode;
     device->CreateSDLWindow = KMSDRM_CreateWindow;
     device->CreateSDLWindowFrom = KMSDRM_CreateWindowFrom;
     device->SetWindowTitle = KMSDRM_SetWindowTitle;
@@ -1550,19 +1549,6 @@ KMSDRM_GetDisplayModes(_THIS, SDL_VideoDisplay * display)
     }
 }
 
-int
-KMSDRM_SetDisplayMode(_THIS, SDL_VideoDisplay * display, SDL_DisplayMode * mode)
-{
-    /************************************************************************/
-    /* DO NOT add dynamic videomode changes. It makes NO SENSE, since the   */
-    /* PRIMARY PLANE and the CRTC can be used to scale image, so any window */
-    /* will appear fullscren with AR correction with NO extra video memory  */
-    /* bandwidth usage.                                                     */
-    /************************************************************************/    
-
-    return 0;
-}
-
 int
 KMSDRM_CreateWindow(_THIS, SDL_Window * window)
 {