Merge pull request #10462 from OatmealDome/steam-runtime

DolphinQt: Add support for a Steam Runtime build
This commit is contained in:
JMC47
2022-06-06 20:18:06 -04:00
committed by GitHub
4 changed files with 66 additions and 6 deletions

View File

@ -13,7 +13,11 @@
typedef GLXContext (*PFNGLXCREATECONTEXTATTRIBSPROC)(Display*, GLXFBConfig, GLXContext, Bool,
const int*);
#ifndef GLX_EXT_swap_control
typedef void (*PFNGLXSWAPINTERVALEXTPROC)(Display*, GLXDrawable, int);
#endif
typedef int (*PFNGLXSWAPINTERVALMESAPROC)(unsigned int);
static PFNGLXCREATECONTEXTATTRIBSPROC glXCreateContextAttribs = nullptr;