Procházet zdrojové kódy

video: sync Metal_CreateView with GL_CreateContext and Vulkan_CreateSurface
no need to check if _this->Metal_CreateView, since it is already checked in Re(create)Window

pionere před 2 roky
rodič
revize
d09edcbcac
1 změnil soubory, kde provedl 1 přidání a 6 odebrání
  1. 1 6
      src/video/SDL_video.c

+ 1 - 6
src/video/SDL_video.c

@@ -4867,12 +4867,7 @@ SDL_Metal_CreateView(SDL_Window * window)
         return NULL;
     }
 
-    if (_this->Metal_CreateView) {
-        return _this->Metal_CreateView(_this, window);
-    } else {
-        SDL_SetError("Metal is not supported.");
-        return NULL;
-    }
+    return _this->Metal_CreateView(_this, window);
 }
 
 void