mirror of
https://github.com/melonDS-emu/melonDS.git
synced 2025-07-22 22:01:06 -06:00
* fix the OpenGL shito under Linux
* make the 'BIOS not found' errors a bit more user-friendly
This commit is contained in:
@ -49,9 +49,21 @@
|
||||
// if you need more OpenGL functions, add them to the macronator here
|
||||
|
||||
|
||||
#define DO_PROCLIST(func) \
|
||||
#ifdef __WIN32__
|
||||
|
||||
#define DO_PROCLIST_1_3(func) \
|
||||
func(GLACTIVETEXTURE, glActiveTexture); \
|
||||
func(GLBLENDCOLOR, glBlendColor); \
|
||||
|
||||
#else
|
||||
|
||||
#define DO_PROCLIST_1_3(func)
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
#define DO_PROCLIST(func) \
|
||||
DO_PROCLIST_1_3(func) \
|
||||
\
|
||||
func(GLGENFRAMEBUFFERS, glGenFramebuffers); \
|
||||
func(GLDELETEFRAMEBUFFERS, glDeleteFramebuffers); \
|
||||
|
Reference in New Issue
Block a user