2014-02-10 13:54:46 -05:00
|
|
|
// Copyright 2014 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2
|
|
|
|
// Refer to the license.txt file included.
|
2012-12-17 15:01:52 -06:00
|
|
|
|
2014-02-10 13:54:46 -05:00
|
|
|
#pragma once
|
2012-12-17 15:01:52 -06:00
|
|
|
|
2012-12-26 12:12:26 -06:00
|
|
|
#include "X11_Util.h"
|
2012-12-17 15:01:52 -06:00
|
|
|
#include "InterfaceBase.h"
|
|
|
|
|
|
|
|
class cInterfaceGLX : public cInterfaceBase
|
|
|
|
{
|
|
|
|
private:
|
2012-12-26 12:12:26 -06:00
|
|
|
cX11Window XWindow;
|
2012-12-17 15:01:52 -06:00
|
|
|
public:
|
2012-12-26 12:12:26 -06:00
|
|
|
friend class cX11Window;
|
2013-01-24 10:31:08 -06:00
|
|
|
void SwapInterval(int Interval);
|
2012-12-26 00:34:09 -06:00
|
|
|
void Swap();
|
2012-12-17 15:01:52 -06:00
|
|
|
void UpdateFPSDisplay(const char *Text);
|
2014-01-18 14:18:32 +00:00
|
|
|
void* GetFuncAddress(std::string name);
|
2012-12-26 00:07:43 -06:00
|
|
|
bool Create(void *&window_handle);
|
2012-12-17 15:01:52 -06:00
|
|
|
bool MakeCurrent();
|
2013-04-11 03:32:07 +02:00
|
|
|
bool ClearCurrent();
|
2013-10-29 01:23:17 -04:00
|
|
|
void Shutdown();
|
2012-12-17 15:01:52 -06:00
|
|
|
};
|