mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-12 00:59:11 +01:00
ca3ebe743f
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1812 8ced0084-cf51-0410-be5f-012b33b47a6e
30 lines
504 B
C++
30 lines
504 B
C++
#ifndef _SDLWINDOW_H
|
|
#define _SDLWINDOW_H
|
|
|
|
#include "GLWindow.h"
|
|
#if defined HAVE_SDL && HAVE_SDL
|
|
#include <SDL.h>
|
|
|
|
class SDLWindow : public GLWindow
|
|
{
|
|
public:
|
|
virtual void SwapBuffers();
|
|
virtual void SetWindowText(const char *text);
|
|
virtual bool PeekMessages();
|
|
virtual void Update();
|
|
virtual bool MakeCurrent();
|
|
|
|
static bool valid() { return true; }
|
|
~SDLWindow();
|
|
SDLWindow();
|
|
|
|
};
|
|
#else
|
|
class SDLWindow : public GLWindow
|
|
{
|
|
public:
|
|
SDLWindow() {}
|
|
};
|
|
#endif
|
|
#endif
|