dolphin/Source/Core/DolphinWX/GLInterface/GLX.h

25 lines
516 B
C
Raw Normal View History

// Copyright 2014 Dolphin Emulator Project
// Licensed under GPLv2
// Refer to the license.txt file included.
2012-12-17 21:01:52 +00:00
#pragma once
2012-12-17 21:01:52 +00:00
2012-12-26 18:12:26 +00:00
#include "X11_Util.h"
2012-12-17 21:01:52 +00:00
#include "InterfaceBase.h"
class cInterfaceGLX : public cInterfaceBase
{
private:
2012-12-26 18:12:26 +00:00
cX11Window XWindow;
2012-12-17 21:01:52 +00:00
public:
2012-12-26 18:12:26 +00:00
friend class cX11Window;
void SwapInterval(int Interval);
2012-12-26 06:34:09 +00:00
void Swap();
2012-12-17 21:01:52 +00:00
void UpdateFPSDisplay(const char *Text);
void* GetFuncAddress(std::string name);
bool Create(void *&window_handle);
2012-12-17 21:01:52 +00:00
bool MakeCurrent();
bool ClearCurrent();
void Shutdown();
2012-12-17 21:01:52 +00:00
};