summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar bunnei2018-07-12 22:57:57 -0400
committerGravatar bunnei2018-07-12 22:57:57 -0400
commit8aeff9cf8e84c27ab83cea8df1a94ce8082efc78 (patch)
treee79cdf86838e120908b50fd25ad4f48a98bc29e9 /src
parentgl_shader_gen: Implement dual vertex shader mode. (diff)
downloadyuzu-8aeff9cf8e84c27ab83cea8df1a94ce8082efc78.tar.gz
yuzu-8aeff9cf8e84c27ab83cea8df1a94ce8082efc78.tar.xz
yuzu-8aeff9cf8e84c27ab83cea8df1a94ce8082efc78.zip
gl_rasterizer: Fix check for if a shader stage is enabled.
Diffstat (limited to 'src')
-rw-r--r--src/video_core/engines/maxwell_3d.cpp21
-rw-r--r--src/video_core/engines/maxwell_3d.h11
-rw-r--r--src/video_core/renderer_opengl/gl_rasterizer.cpp14
3 files changed, 11 insertions, 35 deletions
diff --git a/src/video_core/engines/maxwell_3d.cpp b/src/video_core/engines/maxwell_3d.cpp
index 3bca16364..dfbf80abd 100644
--- a/src/video_core/engines/maxwell_3d.cpp
+++ b/src/video_core/engines/maxwell_3d.cpp
@@ -398,27 +398,6 @@ u32 Maxwell3D::GetRegisterValue(u32 method) const {
398 return regs.reg_array[method]; 398 return regs.reg_array[method];
399} 399}
400 400
401bool Maxwell3D::IsShaderStageEnabled(Regs::ShaderStage stage) const {
402 // The Vertex stage is always enabled.
403 if (stage == Regs::ShaderStage::Vertex)
404 return true;
405
406 switch (stage) {
407 case Regs::ShaderStage::TesselationControl:
408 return regs.shader_config[static_cast<size_t>(Regs::ShaderProgram::TesselationControl)]
409 .enable != 0;
410 case Regs::ShaderStage::TesselationEval:
411 return regs.shader_config[static_cast<size_t>(Regs::ShaderProgram::TesselationEval)]
412 .enable != 0;
413 case Regs::ShaderStage::Geometry:
414 return regs.shader_config[static_cast<size_t>(Regs::ShaderProgram::Geometry)].enable != 0;
415 case Regs::ShaderStage::Fragment:
416 return regs.shader_config[static_cast<size_t>(Regs::ShaderProgram::Fragment)].enable != 0;
417 }
418
419 UNREACHABLE();
420}
421
422void Maxwell3D::ProcessClearBuffers() { 401void Maxwell3D::ProcessClearBuffers() {
423 ASSERT(regs.clear_buffers.R == regs.clear_buffers.G && 402 ASSERT(regs.clear_buffers.R == regs.clear_buffers.G &&
424 regs.clear_buffers.R == regs.clear_buffers.B && 403 regs.clear_buffers.R == regs.clear_buffers.B &&
diff --git a/src/video_core/engines/maxwell_3d.h b/src/video_core/engines/maxwell_3d.h
index 5a7cf0107..6f0170ff7 100644
--- a/src/video_core/engines/maxwell_3d.h
+++ b/src/video_core/engines/maxwell_3d.h
@@ -379,6 +379,14 @@ public:
379 } 379 }
380 }; 380 };
381 381
382 bool IsShaderConfigEnabled(size_t index) const {
383 // The VertexB is always enabled.
384 if (index == static_cast<size_t>(Regs::ShaderProgram::VertexB)) {
385 return true;
386 }
387 return shader_config[index].enable != 0;
388 }
389
382 union { 390 union {
383 struct { 391 struct {
384 INSERT_PADDING_WORDS(0x45); 392 INSERT_PADDING_WORDS(0x45);
@@ -780,9 +788,6 @@ public:
780 /// Returns the texture information for a specific texture in a specific shader stage. 788 /// Returns the texture information for a specific texture in a specific shader stage.
781 Texture::FullTextureInfo GetStageTexture(Regs::ShaderStage stage, size_t offset) const; 789 Texture::FullTextureInfo GetStageTexture(Regs::ShaderStage stage, size_t offset) const;
782 790
783 /// Returns whether the specified shader stage is enabled or not.
784 bool IsShaderStageEnabled(Regs::ShaderStage stage) const;
785
786private: 791private:
787 std::unordered_map<u32, std::vector<u32>> uploaded_macros; 792 std::unordered_map<u32, std::vector<u32>> uploaded_macros;
788 793
diff --git a/src/video_core/renderer_opengl/gl_rasterizer.cpp b/src/video_core/renderer_opengl/gl_rasterizer.cpp
index 02ffd9bde..4072a12b4 100644
--- a/src/video_core/renderer_opengl/gl_rasterizer.cpp
+++ b/src/video_core/renderer_opengl/gl_rasterizer.cpp
@@ -216,15 +216,13 @@ void RasterizerOpenGL::SetupShaders(u8* buffer_ptr, GLintptr buffer_offset) {
216 auto& shader_config = gpu.regs.shader_config[index]; 216 auto& shader_config = gpu.regs.shader_config[index];
217 const Maxwell::ShaderProgram program{static_cast<Maxwell::ShaderProgram>(index)}; 217 const Maxwell::ShaderProgram program{static_cast<Maxwell::ShaderProgram>(index)};
218 218
219 const size_t stage{index == 0 ? 0 : index - 1}; // Stage indices are 0 - 5
220
221 const bool is_enabled = gpu.IsShaderStageEnabled(static_cast<Maxwell::ShaderStage>(stage));
222
223 // Skip stages that are not enabled 219 // Skip stages that are not enabled
224 if (!is_enabled) { 220 if (!gpu.regs.IsShaderConfigEnabled(index)) {
225 continue; 221 continue;
226 } 222 }
227 223
224 const size_t stage{index == 0 ? 0 : index - 1}; // Stage indices are 0 - 5
225
228 GLShader::MaxwellUniformData ubo{}; 226 GLShader::MaxwellUniformData ubo{};
229 ubo.SetFromRegs(gpu.state.shader_stages[stage]); 227 ubo.SetFromRegs(gpu.state.shader_stages[stage]);
230 std::memcpy(buffer_ptr, &ubo, sizeof(ubo)); 228 std::memcpy(buffer_ptr, &ubo, sizeof(ubo));
@@ -628,9 +626,6 @@ u32 RasterizerOpenGL::SetupConstBuffers(Maxwell::ShaderStage stage, GLuint progr
628 auto& gpu = Core::System::GetInstance().GPU(); 626 auto& gpu = Core::System::GetInstance().GPU();
629 auto& maxwell3d = gpu.Get3DEngine(); 627 auto& maxwell3d = gpu.Get3DEngine();
630 628
631 ASSERT_MSG(maxwell3d.IsShaderStageEnabled(stage),
632 "Attempted to upload constbuffer of disabled shader stage");
633
634 // Reset all buffer draw state for this stage. 629 // Reset all buffer draw state for this stage.
635 for (auto& buffer : state.draw.const_buffers[static_cast<size_t>(stage)]) { 630 for (auto& buffer : state.draw.const_buffers[static_cast<size_t>(stage)]) {
636 buffer.bindpoint = 0; 631 buffer.bindpoint = 0;
@@ -697,9 +692,6 @@ u32 RasterizerOpenGL::SetupTextures(Maxwell::ShaderStage stage, GLuint program,
697 auto& gpu = Core::System::GetInstance().GPU(); 692 auto& gpu = Core::System::GetInstance().GPU();
698 auto& maxwell3d = gpu.Get3DEngine(); 693 auto& maxwell3d = gpu.Get3DEngine();
699 694
700 ASSERT_MSG(maxwell3d.IsShaderStageEnabled(stage),
701 "Attempted to upload textures of disabled shader stage");
702
703 ASSERT_MSG(current_unit + entries.size() <= std::size(state.texture_units), 695 ASSERT_MSG(current_unit + entries.size() <= std::size(state.texture_units),
704 "Exceeded the number of active textures."); 696 "Exceeded the number of active textures.");
705 697