OpenGL: Temporarily reduce OpenGL driver priorities
This commit is contained in:
@@ -33,7 +33,7 @@ private:
|
||||
/** Factory for the SDL video driver. */
|
||||
class FVideoDriver_SDL_Default : public DriverFactoryBase {
|
||||
public:
|
||||
FVideoDriver_SDL_Default() : DriverFactoryBase(Driver::DT_VIDEO, 5, "sdl", "SDL Video Driver") {}
|
||||
FVideoDriver_SDL_Default() : DriverFactoryBase(Driver::DT_VIDEO, 8, "sdl", "SDL Video Driver") {}
|
||||
Driver *CreateInstance() const override { return new VideoDriver_SDL_Default(); }
|
||||
};
|
||||
|
||||
|
@@ -49,6 +49,6 @@ private:
|
||||
/** The factory for SDL' OpenGL video driver. */
|
||||
class FVideoDriver_SDL_OpenGL : public DriverFactoryBase {
|
||||
public:
|
||||
FVideoDriver_SDL_OpenGL() : DriverFactoryBase(Driver::DT_VIDEO, 8, "sdl-opengl", "SDL OpenGL Video Driver") {}
|
||||
FVideoDriver_SDL_OpenGL() : DriverFactoryBase(Driver::DT_VIDEO, 7, "sdl-opengl", "SDL OpenGL Video Driver") {}
|
||||
/* virtual */ Driver *CreateInstance() const override { return new VideoDriver_SDL_OpenGL(); }
|
||||
};
|
||||
|
@@ -177,7 +177,7 @@ protected:
|
||||
/** The factory for Windows' OpenGL video driver. */
|
||||
class FVideoDriver_Win32OpenGL : public DriverFactoryBase {
|
||||
public:
|
||||
FVideoDriver_Win32OpenGL() : DriverFactoryBase(Driver::DT_VIDEO, 10, "win32-opengl", "Win32 OpenGL Video Driver") {}
|
||||
FVideoDriver_Win32OpenGL() : DriverFactoryBase(Driver::DT_VIDEO, 8, "win32-opengl", "Win32 OpenGL Video Driver") {}
|
||||
/* virtual */ Driver *CreateInstance() const override { return new VideoDriver_Win32OpenGL(); }
|
||||
};
|
||||
|
||||
|
Reference in New Issue
Block a user