diff options
| author | Mat M <mathew1800@gmail.com> | 2020-05-27 07:04:06 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-05-27 07:04:06 -0400 |
| commit | c62e6a335d9ef7c96f24e54da5a3dcab58ff8c67 (patch) | |
| tree | e8eadf01393d13562e940105e8a29b08761bc010 /Source/Core/VideoCommon/FramebufferManager.cpp | |
| parent | 68706973d2c190d1a683c2e6a33d7515618bb930 (diff) | |
| parent | 86f8768268d58d6f5b11bcb74011c0af8159cde7 (diff) | |
Merge pull request #8532 from lioncash/shader-common-fmt
VideoCommon/ShaderGenCommon: Convert helper functions over to fmt where applicable
Diffstat (limited to 'Source/Core/VideoCommon/FramebufferManager.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/FramebufferManager.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Source/Core/VideoCommon/FramebufferManager.cpp b/Source/Core/VideoCommon/FramebufferManager.cpp index 0aeb691362..344a6e2b64 100644 --- a/Source/Core/VideoCommon/FramebufferManager.cpp +++ b/Source/Core/VideoCommon/FramebufferManager.cpp @@ -3,9 +3,8 @@ // Refer to the license.txt file included. #include "VideoCommon/FramebufferManager.h" + #include <memory> -#include "VideoCommon/FramebufferShaderGen.h" -#include "VideoCommon/VertexManagerBase.h" #include "Common/ChunkFile.h" #include "Common/Logging/Log.h" @@ -17,7 +16,10 @@ #include "VideoCommon/AbstractStagingTexture.h" #include "VideoCommon/AbstractTexture.h" #include "VideoCommon/DriverDetails.h" +#include "VideoCommon/FramebufferShaderGen.h" #include "VideoCommon/RenderBase.h" +#include "VideoCommon/VertexManagerBase.h" +#include "VideoCommon/VideoCommon.h" #include "VideoCommon/VideoConfig.h" // Maximum number of pixels poked in one batch * 6 |
