mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-09-03 08:07:45 +00:00
Convert all includes to relative paths.
This commit is contained in:
parent
73691a8587
commit
2afe215271
893 changed files with 4628 additions and 4957 deletions
|
@ -4,7 +4,7 @@
|
|||
|
||||
#pragma once
|
||||
|
||||
#include "Thread.h"
|
||||
#include "Common/Thread.h"
|
||||
|
||||
#if USE_EGL
|
||||
// Currently Wayland/EGL and X11/EGL platforms are supported.
|
||||
|
@ -19,19 +19,19 @@ enum egl_platform {
|
|||
};
|
||||
|
||||
#if HAVE_X11
|
||||
#include "GLInterface/X11_Util.h"
|
||||
#include "DolphinWX/GLInterface/X11_Util.h"
|
||||
#endif
|
||||
#if HAVE_WAYLAND
|
||||
#include "GLInterface/Wayland_Util.h"
|
||||
#include "DolphinWX/GLInterface/Wayland_Util.h"
|
||||
#endif
|
||||
|
||||
#include "GLInterface/EGL.h"
|
||||
#include "DolphinWX/GLInterface/EGL.h"
|
||||
#elif defined(__APPLE__)
|
||||
#include "GLInterface/AGL.h"
|
||||
#include "DolphinWX/GLInterface/AGL.h"
|
||||
#elif defined(_WIN32)
|
||||
#include "GLInterface/WGL.h"
|
||||
#include "DolphinWX/GLInterface/WGL.h"
|
||||
#elif HAVE_X11
|
||||
#include "GLInterface/GLX.h"
|
||||
#include "DolphinWX/GLInterface/GLX.h"
|
||||
#include <GL/glx.h>
|
||||
#else
|
||||
#error Platform doesnt have a GLInterface
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue