summaryrefslogtreecommitdiff
path: root/src/video/sdl_v.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/video/sdl_v.h')
-rw-r--r--src/video/sdl_v.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/video/sdl_v.h b/src/video/sdl_v.h
index 7df29a2ea..2b37cbdb6 100644
--- a/src/video/sdl_v.h
+++ b/src/video/sdl_v.h
@@ -29,30 +29,19 @@ public:
bool AfterBlitterChange() override;
- void AcquireBlitterLock() override;
-
- void ReleaseBlitterLock() override;
-
bool ClaimMousePointer() override;
const char *GetName() const override { return "sdl"; }
protected:
void InputLoop() override;
- bool LockVideoBuffer() override;
- void UnlockVideoBuffer() override;
void Paint() override;
- void PaintThread() override;
void CheckPaletteAnim() override;
bool PollEvent() override;
private:
- std::unique_lock<std::recursive_mutex> draw_lock;
-
bool CreateMainSurface(uint w, uint h);
void SetupKeyboard();
-
- static void PaintThreadThunk(VideoDriver_SDL *drv);
};
/** Factory for the SDL video driver. */