Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Move GLInterface.h into GLInterface directory
  • Loading branch information
soreau committed Jan 20, 2014
1 parent 4b3c338 commit 2c8340e
Show file tree
Hide file tree
Showing 14 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion Source/Core/DolphinWX/Android/ButtonManager.cpp
Expand Up @@ -16,7 +16,7 @@
// http://code.google.com/p/dolphin-emu/

#include <unordered_map>
#include "GLInterface.h"
#include "GLInterface/GLInterface.h"
#include "Android/ButtonManager.h"

namespace ButtonManager
Expand Down
2 changes: 1 addition & 1 deletion Source/Core/DolphinWX/GLInterface/AGL.cpp
Expand Up @@ -23,7 +23,7 @@
#include <wx/panel.h>

#include "VertexShaderManager.h"
#include "../GLInterface.h"
#include "GLInterface.h"
#include "AGL.h"

void cInterfaceAGL::Swap()
Expand Down
2 changes: 1 addition & 1 deletion Source/Core/DolphinWX/GLInterface/EGL.cpp
Expand Up @@ -18,7 +18,7 @@
#include "Host.h"
#include "RenderBase.h"

#include "../GLInterface.h"
#include "GLInterface.h"
#include "EGL.h"

// Show the current FPS
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion Source/Core/DolphinWX/GLInterface/GLX.cpp
Expand Up @@ -19,7 +19,7 @@
#include "RenderBase.h"
#include "VideoConfig.h"

#include "../GLInterface.h"
#include "GLInterface.h"
#include "GLX.h"

typedef int ( * PFNGLXSWAPINTERVALSGIPROC) (int interval);
Expand Down
2 changes: 1 addition & 1 deletion Source/Core/DolphinWX/GLInterface/Platform.cpp
Expand Up @@ -16,7 +16,7 @@
// http://code.google.com/p/dolphin-emu/

#include "Host.h"
#include "GLInterface.h"
#include "GLInterface/GLInterface.h"

bool cPlatform::SelectDisplay(void)
{
Expand Down
2 changes: 1 addition & 1 deletion Source/Core/DolphinWX/GLInterface/WGL.cpp
Expand Up @@ -7,7 +7,7 @@
#include "RenderBase.h"

#include "VertexShaderManager.h"
#include "../GLInterface.h"
#include "GLInterface.h"
#include "WGL.h"

#include "EmuWindow.h"
Expand Down
2 changes: 1 addition & 1 deletion Source/Core/DolphinWX/GLInterface/Wayland_Util.cpp
Expand Up @@ -17,7 +17,7 @@

#include "Core.h"
#include "State.h"
#include "../GLInterface.h"
#include "GLInterface.h"
#include <linux/input.h>
#include <sys/mman.h>

Expand Down
2 changes: 1 addition & 1 deletion Source/Core/DolphinWX/GLInterface/X11_Util.cpp
Expand Up @@ -17,7 +17,7 @@

#include "Host.h"
#include "VideoConfig.h"
#include "../GLInterface.h"
#include "GLInterface.h"

#if USE_EGL
bool cXInterface::ServerConnect(void)
Expand Down
2 changes: 1 addition & 1 deletion Source/Core/DolphinWX/MainNoGUI.cpp
Expand Up @@ -18,7 +18,7 @@

#if HAVE_WAYLAND
#include <wayland-client.h>
#include "GLInterface.h"
#include "GLInterface/GLInterface.h"
#endif

#ifdef __APPLE__
Expand Down
@@ -1,7 +1,7 @@
#include "ControllerInterface.h"

#if USE_EGL
#include "GLInterface.h"
#include "GLInterface/GLInterface.h"
#endif

#ifdef CIFACE_USE_XINPUT
Expand Down
2 changes: 1 addition & 1 deletion Source/Core/VideoBackends/OGL/GLExtensions/GLExtensions.h
Expand Up @@ -4,7 +4,7 @@

#include <string>

#include "GLInterface.h"
#include "GLInterface/GLInterface.h"

#include "gl_1_1.h"
#include "gl_1_2.h"
Expand Down
2 changes: 1 addition & 1 deletion Source/Core/VideoBackends/OGL/GLUtil.h
Expand Up @@ -7,7 +7,7 @@

#include "VideoConfig.h"
#include "MathUtil.h"
#include "GLInterface.h"
#include "GLInterface/GLInterface.h"
#include "GLExtensions/GLExtensions.h"

#ifndef GL_DEPTH24_STENCIL8_EXT // allows FBOs to support stencils
Expand Down
2 changes: 1 addition & 1 deletion Source/Core/VideoBackends/OGL/PerfQuery.cpp
Expand Up @@ -2,7 +2,7 @@
// Licensed under GPLv2
// Refer to the license.txt file included.

#include "GLInterface.h"
#include "GLInterface/GLInterface.h"
#include "RenderBase.h"
#include "GLUtil.h"
#include "PerfQuery.h"
Expand Down

0 comments on commit 2c8340e

Please sign in to comment.