forked from dolphin-emu/dolphin
		
	
		
			
				
	
	
		
			32 lines
		
	
	
		
			710 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			710 B
		
	
	
	
		
			C++
		
	
	
	
	
	
// Copyright 2008 Dolphin Emulator Project
 | 
						|
// Licensed under GPLv2+
 | 
						|
// Refer to the license.txt file included.
 | 
						|
 | 
						|
#pragma once
 | 
						|
 | 
						|
#include <GL/glx.h>
 | 
						|
#include <string>
 | 
						|
 | 
						|
#include "Common/GL/GLInterface/X11_Util.h"
 | 
						|
#include "Common/GL/GLInterfaceBase.h"
 | 
						|
 | 
						|
class cInterfaceGLX : public cInterfaceBase
 | 
						|
{
 | 
						|
private:
 | 
						|
  cX11Window XWindow;
 | 
						|
  Display* dpy;
 | 
						|
  Window win;
 | 
						|
  GLXContext ctx;
 | 
						|
  GLXFBConfig fbconfig;
 | 
						|
 | 
						|
public:
 | 
						|
  friend class cX11Window;
 | 
						|
  void SwapInterval(int Interval) override;
 | 
						|
  void Swap() override;
 | 
						|
  void* GetFuncAddress(const std::string& name) override;
 | 
						|
  bool Create(void* window_handle, bool core) override;
 | 
						|
  bool MakeCurrent() override;
 | 
						|
  bool ClearCurrent() override;
 | 
						|
  void Shutdown() override;
 | 
						|
};
 |