diff options
| author | Nolan Check <Nolan.Check@gmail.com> | 2011-03-30 16:01:03 +0000 |
|---|---|---|
| committer | Nolan Check <Nolan.Check@gmail.com> | 2011-03-30 16:01:03 +0000 |
| commit | 3ef8a57da648f207e41b5997e5e0a552cd9b2b32 (patch) | |
| tree | 53fc4928aa6dcd1045032aba6041c5937de23497 | |
| parent | 306c3570d1162a423ec12d08c8b8168e6f299c15 (diff) | |
DX11: Fix issue 4345
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@7423 8ced0084-cf51-0410-be5f-012b33b47a6e
| -rw-r--r-- | Source/Plugins/Plugin_VideoDX11/Src/D3DShader.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Plugins/Plugin_VideoDX11/Src/D3DShader.cpp b/Source/Plugins/Plugin_VideoDX11/Src/D3DShader.cpp index 8deb81ff70..4412f91b4c 100644 --- a/Source/Plugins/Plugin_VideoDX11/Src/D3DShader.cpp +++ b/Source/Plugins/Plugin_VideoDX11/Src/D3DShader.cpp @@ -110,7 +110,7 @@ SharedPtr<ID3D10Blob> CompileVertexShader(const char* code, unsigned int len) SharedPtr<ID3D10Blob> CompileGeometryShader(const char* code, unsigned int len, const D3D_SHADER_MACRO* pDefines) { - return CompileShader(code, len, D3D::GeometryShaderVersionString()); + return CompileShader(code, len, D3D::GeometryShaderVersionString(), pDefines); } // code->bytecode |
