From b6a6773dca666e4db4c451f912d4231e9c978d0d Mon Sep 17 00:00:00 2001 From: baldurk Date: Fri, 8 Jan 2016 19:57:43 +0100 Subject: [PATCH] 32-bit compile fixes (sizes of structures) --- renderdoc/core/replay_proxy.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/renderdoc/core/replay_proxy.cpp b/renderdoc/core/replay_proxy.cpp index 84fe31344..849c0afbf 100644 --- a/renderdoc/core/replay_proxy.cpp +++ b/renderdoc/core/replay_proxy.cpp @@ -171,7 +171,7 @@ void Serialiser::Serialise(const char *name, ShaderConstant &el) Serialise("", el.reg.comp); Serialise("", el.type); - SIZE_CHECK(ShaderConstant, 52); + SIZE_CHECK(ShaderConstant, 56); } template<> @@ -196,7 +196,7 @@ void Serialiser::Serialise(const char *name, ShaderResource &el) Serialise("", el.variableType); Serialise("", el.bindPoint); - SIZE_CHECK(ShaderResource, 64); + SIZE_CHECK(ShaderResource, 68); } template<> @@ -466,7 +466,7 @@ void Serialiser::Serialise(const char *name, D3D11PipelineState &el) Serialise("", el.m_RS); Serialise("", el.m_OM); - SIZE_CHECK(D3D11PipelineState, 1040); + SIZE_CHECK(D3D11PipelineState, 1048); } #pragma endregion D3D11 pipeline state