diff options
| author | Stenzek <stenzek@gmail.com> | 2017-07-20 15:25:24 +1000 |
|---|---|---|
| committer | Stenzek <stenzek@gmail.com> | 2017-07-30 17:43:59 +1000 |
| commit | 7d78cf0f6fbca526e748590aeb6dfdc3c016669e (patch) | |
| tree | 8aaeae2df72e621fdc722e818d746ad6cbbbf442 /Source/Core/VideoCommon/PixelEngine.cpp | |
| parent | 07591e7d5cf1a909a1691492337cda55025c0d20 (diff) | |
ShaderGen: Implement pixel ubershaders
Diffstat (limited to 'Source/Core/VideoCommon/PixelEngine.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/PixelEngine.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/Core/VideoCommon/PixelEngine.cpp b/Source/Core/VideoCommon/PixelEngine.cpp index 9c4282170b..02cda26917 100644 --- a/Source/Core/VideoCommon/PixelEngine.cpp +++ b/Source/Core/VideoCommon/PixelEngine.cpp @@ -18,6 +18,7 @@ #include "VideoCommon/CommandProcessor.h" #include "VideoCommon/Fifo.h" #include "VideoCommon/PixelEngine.h" +#include "VideoCommon/PixelShaderManager.h" namespace PixelEngine { @@ -231,6 +232,7 @@ void RegisterMMIO(MMIO::Mapping* mmio, u32 base) { mmio->Register(base | (PE_BBOX_LEFT + 2 * i), MMIO::ComplexRead<u16>([i](u32) { BoundingBox::active = false; + PixelShaderManager::SetBoundingBoxActive(false); return g_video_backend->Video_GetBoundingBox(i); }), MMIO::InvalidWrite<u16>()); |
