snes9x/shaders/shader_platform.h

28 lines
529 B
C
Raw Normal View History

#ifndef __SHADER_PLATFORM_H
#define __SHADER_PLATFORM_H
2018-05-14 22:19:55 +00:00
#include "port.h"
#ifdef SNES9X_GTK
#include <epoxy/gl.h>
#include <epoxy/glx.h>
#endif
2018-05-14 22:19:55 +00:00
#ifdef _WIN32
#include <windows.h>
#include <stdlib.h>
2018-05-20 17:48:38 +00:00
#include "gl_core_3_1.h"
#include <direct.h>
2018-05-14 22:19:55 +00:00
#ifdef UNICODE
#define chdir(dir) _wchdir(Utf8ToWide(dir))
#define realpath(src, resolved) _twfullpath(resolved, src, PATH_MAX)
#else
2018-05-14 22:19:55 +00:00
#define chdir(dir) _chdir(dir)
#define realpath(src, resolved) _fullpath(resolved, src, PATH_MAX)
#endif
2018-05-20 17:48:38 +00:00
2018-05-14 22:19:55 +00:00
#endif
#endif /* __SHADER_PLATFORM_H */