summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/VideoState.cpp
diff options
context:
space:
mode:
authorJules Blok <jules.blok@gmail.com>2014-12-14 21:23:13 +0100
committerJules Blok <jules.blok@gmail.com>2014-12-14 21:23:13 +0100
commitb406e4e1f2c696ba5f6bec04ea2e6a8cc03a02d1 (patch)
tree5d047b49b3b35e4f2f4abe05a69992f630bc7870 /Source/Core/VideoCommon/VideoState.cpp
parent21ac9aa715d7bfc24e52474c2511892ed4ad6ac8 (diff)
VideoCommon: Add a separate constants buffer for the geometry shader.
Diffstat (limited to 'Source/Core/VideoCommon/VideoState.cpp')
-rw-r--r--Source/Core/VideoCommon/VideoState.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/Core/VideoCommon/VideoState.cpp b/Source/Core/VideoCommon/VideoState.cpp
index a36a5d9d33..337bfd04a0 100644
--- a/Source/Core/VideoCommon/VideoState.cpp
+++ b/Source/Core/VideoCommon/VideoState.cpp
@@ -8,6 +8,7 @@
#include "VideoCommon/CommandProcessor.h"
#include "VideoCommon/CPMemory.h"
#include "VideoCommon/Fifo.h"
+#include "VideoCommon/GeometryShaderManager.h"
#include "VideoCommon/PixelEngine.h"
#include "VideoCommon/PixelShaderManager.h"
#include "VideoCommon/TextureDecoder.h"
@@ -50,6 +51,9 @@ static void DoState(PointerWrap &p)
VertexShaderManager::DoState(p);
p.DoMarker("VertexShaderManager");
+ GeometryShaderManager::DoState(p);
+ p.DoMarker("GeometryShaderManager");
+
VertexManager::DoState(p);
p.DoMarker("VertexManager");