17 std::optional<std::string_view>
Start(
const StringList ¶m)
override;
32 void ToggleVsync(
bool vsync)
override;
34 std::string_view
GetName()
const override {
return "sdl-opengl"; }
40 void Paint()
override;
47 std::optional<std::string_view> AllocateContext();
48 void DestroyContext();
Base for all driver factories.
DriverFactoryBase(Driver::Type type, int priority, const char *name, const char *description)
Construct a new DriverFactory.
A driver for communicating with the user.
@ DT_VIDEO
A video driver.
The factory for SDL' OpenGL video driver.
bool UsesHardwareAcceleration() const override
Does the driver use hardware acceleration (video-drivers only).
Driver * CreateInstance() const override
Create an instance of this driver-class.
The OpenGL video driver for windows.
uint8_t * GetAnimBuffer() override
Get a pointer to the animation buffer of the video back-end.
void Paint() override
Paint the window.
void ReleaseVideoPointer() override
Hand video buffer back to the painting backend.
void * gl_context
OpenGL context.
std::string_view GetName() const override
Get the name of this driver.
bool HasEfficient8Bpp() const override
Has this video driver an efficient code path for palette animated 8-bpp sprites?
bool CreateMainWindow(uint w, uint h, uint flags) override
Create the main window.
void * GetVideoPointer() override
Get a pointer to the video buffer.
void Stop() override
Stop this driver.
bool UseSystemCursor() override
Get whether the mouse cursor is drawn by the video driver.
void ClearSystemSprites() override
Clear all cached sprites.
bool AllocateBackingStore(int w, int h, bool force=false) override
(Re-)create the backing store.
std::optional< std::string_view > Start(const StringList ¶m) override
Start this driver.
void PopulateSystemSprites() override
Populate all sprites in cache.
uint8_t * anim_buffer
Animation buffer from OpenGL back-end.
bool HasAnimBuffer() override
Does this video driver support a separate animation buffer in addition to the colour buffer?
Base of the SDL2 video driver.
std::vector< std::string > StringList
Type for a list of strings.