mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-18 16:30:12 +00:00
compile fixes
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1613 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
3be88bb2dd
commit
422437824c
7 changed files with 26 additions and 24 deletions
|
@ -23,11 +23,11 @@ class GLWindow {
|
|||
int x, y;
|
||||
unsigned int depth;*/
|
||||
|
||||
virtual void SwapBuffers() = 0;
|
||||
virtual void SetWindowText(const char *text) = 0;
|
||||
virtual bool PeekMessages() = 0;
|
||||
virtual void Update() = 0;
|
||||
virtual bool MakeCurrent() = 0;
|
||||
virtual void SwapBuffers() {};
|
||||
virtual void SetWindowText(const char *text) {};
|
||||
virtual bool PeekMessages() {return false;};
|
||||
virtual void Update() {};;
|
||||
virtual bool MakeCurrent() {return false;};
|
||||
virtual void SetSize(u32 newWidth, u32 newHeight) {
|
||||
width = newWidth;
|
||||
height = newHeight;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue