dolphin/Source/Core/VideoBackends/OGL
comex 6e774f1b64 Add missing includes where headers depend on other headers having been included first.
This is good hygiene, and also happens to be required to build Dolphin
using Clang modules.

(Under this setup, each header file becomes a module, and each #include
is automatically translated to a module import.  Recursive includes
still leak through (by default), but modules are compiled independently,
and can't depend on defines or types having previously been set up.  The
main reason to retrofit it onto Dolphin is compilation performance - no
more textual includes whatsoever, rather than putting a few blessed
common headers into a PCH.  Unfortunately, I found multiple Clang bugs
while trying to build Dolphin this way, so it's not ready yet, but I can
start with this prerequisite.)
2014-10-21 21:22:16 -04:00
..
GLExtensions Add missing includes where headers depend on other headers having been included first. 2014-10-21 21:22:16 -04:00
CMakeLists.txt Stop building GLExtensions.cpp twice(One in GL, one in software). We don't need to build it twice, this'll save a bit of time in the build process. 2014-01-19 11:37:37 -06:00
FramebufferManager.cpp Fix build failing when disabling precompiled headers. 2014-09-19 18:17:51 -04:00
FramebufferManager.h OGL: Fix brace and body placements 2014-08-15 14:12:29 -04:00
GLInterfaceBase.h Include CommonTypes.h instead of Common.h. 2014-09-08 15:39:58 -04:00
GLUtil.cpp Core: Remove UpdateFPSDisplay 2014-08-19 10:05:58 -04:00
GLUtil.h Move GLInterface around to remove VideoBackends dependency on DolphinWX 2014-08-02 09:34:39 -07:00
NativeVertexFormat.cpp OGL: Add static to a function in NativeVertexFormat 2014-08-15 14:16:04 -04:00
OGL.vcxproj msvc: remove some remnants of SDL and DSound from projects and general cleanup. 2014-09-01 21:27:44 -07:00
OGL.vcxproj.filters Windows: Use a shared precompiled header for dolphin code under Source/ 2014-08-14 23:51:13 -07:00
PerfQuery.cpp Move GLInterface around to remove VideoBackends dependency on DolphinWX 2014-08-02 09:34:39 -07:00
PerfQuery.h Add missing includes where headers depend on other headers having been included first. 2014-10-21 21:22:16 -04:00
PostProcessing.cpp Clear the texture used by PP shaders prior to use. 2014-08-28 10:16:39 -05:00
PostProcessing.h Add missing includes where headers depend on other headers having been included first. 2014-10-21 21:22:16 -04:00
ProgramShaderCache.cpp Remove extra semicolons at the ends of some lines. 2014-09-10 12:17:38 -04:00
ProgramShaderCache.h OGL: Fix brace and body placements 2014-08-15 14:12:29 -04:00
RasterFont.cpp Merge pull request #1142 from lioncash/linucks 2014-09-23 13:43:18 +10:00
RasterFont.h Add missing includes where headers depend on other headers having been included first. 2014-10-21 21:22:16 -04:00
Render.cpp Moved Input Display to Movie Menu 2014-10-17 21:08:34 -04:00
Render.h Cleanup Renderer::CalculateTargetSize(), and allow IRs higher than 4x to be set via ini. 2014-09-25 19:50:25 -04:00
SamplerCache.cpp Remove another auto .. -> declaration. 2014-10-14 01:10:35 -04:00
SamplerCache.h Fix more header sorting issues in VideoBackends/ (now check-includes clean). 2014-02-20 01:01:11 +01:00
StreamBuffer.cpp Rename Log2 and add IsPow2 to MathUtils for future use 2014-09-08 20:15:45 -07:00
StreamBuffer.h OGL: Fix brace and body placements 2014-08-15 14:12:29 -04:00
TextureCache.cpp msvc: resolve all warnings in VideoBackends/OGL. 2014-08-19 22:33:47 -07:00
TextureCache.h BPMemory: Expose the pixel_format and zformat fields in PE_CONTROL as enumerations. 2014-03-25 23:57:58 +01:00
TextureConverter.cpp msvc: resolve all warnings in VideoBackends/OGL. 2014-08-19 22:33:47 -07:00
TextureConverter.h Convert all includes to relative paths. 2014-02-18 02:19:10 -05:00
VertexManager.cpp OGL: Fix brace and body placements 2014-08-15 14:12:29 -04:00
VertexManager.h Add missing includes where headers depend on other headers having been included first. 2014-10-21 21:22:16 -04:00
VideoBackend.h Core: Remove UpdateFPSDisplay 2014-08-19 10:05:58 -04:00
main.cpp VideoCommon: Remove support for decoding to ARGB textures 2014-09-04 18:36:56 -07:00
main.h Move GLInterface around to remove VideoBackends dependency on DolphinWX 2014-08-02 09:34:39 -07:00