diff options
| -rw-r--r-- | src/video_core/renderer_opengl/gl_shader_cache.cpp | 4 |
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 @@ | |||
| 34 | namespace OpenGL { | 34 | namespace OpenGL { |
| 35 | 35 | ||
| 36 | using Tegra::Engines::ShaderType; | 36 | using Tegra::Engines::ShaderType; |
| 37 | using VideoCommon::Shader::CompileDepth; | ||
| 38 | using VideoCommon::Shader::CompilerSettings; | ||
| 39 | using VideoCommon::Shader::ProgramCode; | 37 | using VideoCommon::Shader::ProgramCode; |
| 40 | using VideoCommon::Shader::Registry; | 38 | using VideoCommon::Shader::Registry; |
| 41 | using VideoCommon::Shader::ShaderIR; | 39 | using VideoCommon::Shader::ShaderIR; |
| @@ -45,7 +43,7 @@ namespace { | |||
| 45 | constexpr u32 STAGE_MAIN_OFFSET = 10; | 43 | constexpr u32 STAGE_MAIN_OFFSET = 10; |
| 46 | constexpr u32 KERNEL_MAIN_OFFSET = 0; | 44 | constexpr u32 KERNEL_MAIN_OFFSET = 0; |
| 47 | 45 | ||
| 48 | constexpr CompilerSettings COMPILER_SETTINGS{CompileDepth::FullDecompile}; | 46 | constexpr 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 |
| 51 | GPUVAddr GetShaderAddress(Core::System& system, Maxwell::ShaderProgram program) { | 49 | GPUVAddr GetShaderAddress(Core::System& system, Maxwell::ShaderProgram program) { |