summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/video_core/renderer_opengl/gl_shader_cache.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/video_core/renderer_opengl/gl_shader_cache.cpp b/src/video_core/renderer_opengl/gl_shader_cache.cpp
index 12c6dcfde..6d2ff20f9 100644
--- a/src/video_core/renderer_opengl/gl_shader_cache.cpp
+++ b/src/video_core/renderer_opengl/gl_shader_cache.cpp
@@ -34,8 +34,6 @@
34namespace OpenGL { 34namespace OpenGL {
35 35
36using Tegra::Engines::ShaderType; 36using Tegra::Engines::ShaderType;
37using VideoCommon::Shader::CompileDepth;
38using VideoCommon::Shader::CompilerSettings;
39using VideoCommon::Shader::ProgramCode; 37using VideoCommon::Shader::ProgramCode;
40using VideoCommon::Shader::Registry; 38using VideoCommon::Shader::Registry;
41using VideoCommon::Shader::ShaderIR; 39using VideoCommon::Shader::ShaderIR;
@@ -45,7 +43,7 @@ namespace {
45constexpr u32 STAGE_MAIN_OFFSET = 10; 43constexpr u32 STAGE_MAIN_OFFSET = 10;
46constexpr u32 KERNEL_MAIN_OFFSET = 0; 44constexpr u32 KERNEL_MAIN_OFFSET = 0;
47 45
48constexpr CompilerSettings COMPILER_SETTINGS{CompileDepth::FullDecompile}; 46constexpr VideoCommon::Shader::CompilerSettings COMPILER_SETTINGS{};
49 47
50/// Gets the address for the specified shader stage program 48/// Gets the address for the specified shader stage program
51GPUVAddr GetShaderAddress(Core::System& system, Maxwell::ShaderProgram program) { 49GPUVAddr GetShaderAddress(Core::System& system, Maxwell::ShaderProgram program) {