diff options
| author | 2017-02-12 12:33:26 -0800 | |
|---|---|---|
| committer | 2017-02-12 12:33:26 -0800 | |
| commit | 443bb3d522916f9be2d27fc8b3d7b5cc942213df (patch) | |
| tree | 5a83052ad2f5888a282d4db2ef9b9f2d4e647a60 /src/video_core/renderer_opengl | |
| parent | citra-qt: Don't attempt to scan files with unsupported extensions (#2402) (diff) | |
| parent | VideoCore: Split u64 Pica reg unions into 2 separate u32 unions (diff) | |
| download | yuzu-443bb3d522916f9be2d27fc8b3d7b5cc942213df.tar.gz yuzu-443bb3d522916f9be2d27fc8b3d7b5cc942213df.tar.xz yuzu-443bb3d522916f9be2d27fc8b3d7b5cc942213df.zip | |
Merge pull request #2550 from yuriks/pica-refactor2
Small VideoCore cleanups
Diffstat (limited to 'src/video_core/renderer_opengl')
| -rw-r--r-- | src/video_core/renderer_opengl/gl_rasterizer.cpp | 16 | ||||
| -rw-r--r-- | src/video_core/renderer_opengl/gl_rasterizer.h | 5 | ||||
| -rw-r--r-- | src/video_core/renderer_opengl/gl_rasterizer_cache.h | 3 | ||||
| -rw-r--r-- | src/video_core/renderer_opengl/gl_shader_gen.cpp | 30 | ||||
| -rw-r--r-- | src/video_core/renderer_opengl/pica_to_gl.h | 4 |
5 files changed, 29 insertions, 29 deletions
diff --git a/src/video_core/renderer_opengl/gl_rasterizer.cpp b/src/video_core/renderer_opengl/gl_rasterizer.cpp index 75736c99f..4b1948a71 100644 --- a/src/video_core/renderer_opengl/gl_rasterizer.cpp +++ b/src/video_core/renderer_opengl/gl_rasterizer.cpp | |||
| @@ -15,7 +15,9 @@ | |||
| 15 | #include "common/vector_math.h" | 15 | #include "common/vector_math.h" |
| 16 | #include "core/hw/gpu.h" | 16 | #include "core/hw/gpu.h" |
| 17 | #include "video_core/pica_state.h" | 17 | #include "video_core/pica_state.h" |
| 18 | #include "video_core/regs.h" | 18 | #include "video_core/regs_framebuffer.h" |
| 19 | #include "video_core/regs_rasterizer.h" | ||
| 20 | #include "video_core/regs_texturing.h" | ||
| 19 | #include "video_core/renderer_opengl/gl_rasterizer.h" | 21 | #include "video_core/renderer_opengl/gl_rasterizer.h" |
| 20 | #include "video_core/renderer_opengl/gl_shader_gen.h" | 22 | #include "video_core/renderer_opengl/gl_shader_gen.h" |
| 21 | #include "video_core/renderer_opengl/gl_shader_util.h" | 23 | #include "video_core/renderer_opengl/gl_shader_util.h" |
| @@ -26,18 +28,6 @@ MICROPROFILE_DEFINE(OpenGL_Drawing, "OpenGL", "Drawing", MP_RGB(128, 128, 192)); | |||
| 26 | MICROPROFILE_DEFINE(OpenGL_Blits, "OpenGL", "Blits", MP_RGB(100, 100, 255)); | 28 | MICROPROFILE_DEFINE(OpenGL_Blits, "OpenGL", "Blits", MP_RGB(100, 100, 255)); |
| 27 | MICROPROFILE_DEFINE(OpenGL_CacheManagement, "OpenGL", "Cache Mgmt", MP_RGB(100, 255, 100)); | 29 | MICROPROFILE_DEFINE(OpenGL_CacheManagement, "OpenGL", "Cache Mgmt", MP_RGB(100, 255, 100)); |
| 28 | 30 | ||
| 29 | static bool IsPassThroughTevStage(const Pica::TexturingRegs::TevStageConfig& stage) { | ||
| 30 | using TevStageConfig = Pica::TexturingRegs::TevStageConfig; | ||
| 31 | |||
| 32 | return (stage.color_op == TevStageConfig::Operation::Replace && | ||
| 33 | stage.alpha_op == TevStageConfig::Operation::Replace && | ||
| 34 | stage.color_source1 == TevStageConfig::Source::Previous && | ||
| 35 | stage.alpha_source1 == TevStageConfig::Source::Previous && | ||
| 36 | stage.color_modifier1 == TevStageConfig::ColorModifier::SourceColor && | ||
| 37 | stage.alpha_modifier1 == TevStageConfig::AlphaModifier::SourceAlpha && | ||
| 38 | stage.GetColorMultiplier() == 1 && stage.GetAlphaMultiplier() == 1); | ||
| 39 | } | ||
| 40 | |||
| 41 | RasterizerOpenGL::RasterizerOpenGL() : shader_dirty(true) { | 31 | RasterizerOpenGL::RasterizerOpenGL() : shader_dirty(true) { |
| 42 | // Create sampler objects | 32 | // Create sampler objects |
| 43 | for (size_t i = 0; i < texture_samplers.size(); ++i) { | 33 | for (size_t i = 0; i < texture_samplers.size(); ++i) { |
diff --git a/src/video_core/renderer_opengl/gl_rasterizer.h b/src/video_core/renderer_opengl/gl_rasterizer.h index bfee911b6..ecf737438 100644 --- a/src/video_core/renderer_opengl/gl_rasterizer.h +++ b/src/video_core/renderer_opengl/gl_rasterizer.h | |||
| @@ -19,7 +19,10 @@ | |||
| 19 | #include "video_core/pica_state.h" | 19 | #include "video_core/pica_state.h" |
| 20 | #include "video_core/pica_types.h" | 20 | #include "video_core/pica_types.h" |
| 21 | #include "video_core/rasterizer_interface.h" | 21 | #include "video_core/rasterizer_interface.h" |
| 22 | #include "video_core/regs.h" | 22 | #include "video_core/regs_framebuffer.h" |
| 23 | #include "video_core/regs_lighting.h" | ||
| 24 | #include "video_core/regs_rasterizer.h" | ||
| 25 | #include "video_core/regs_texturing.h" | ||
| 23 | #include "video_core/renderer_opengl/gl_rasterizer_cache.h" | 26 | #include "video_core/renderer_opengl/gl_rasterizer_cache.h" |
| 24 | #include "video_core/renderer_opengl/gl_resource_manager.h" | 27 | #include "video_core/renderer_opengl/gl_resource_manager.h" |
| 25 | #include "video_core/renderer_opengl/gl_state.h" | 28 | #include "video_core/renderer_opengl/gl_state.h" |
diff --git a/src/video_core/renderer_opengl/gl_rasterizer_cache.h b/src/video_core/renderer_opengl/gl_rasterizer_cache.h index 4072ed49e..aea20c693 100644 --- a/src/video_core/renderer_opengl/gl_rasterizer_cache.h +++ b/src/video_core/renderer_opengl/gl_rasterizer_cache.h | |||
| @@ -21,7 +21,8 @@ | |||
| 21 | #include "common/common_funcs.h" | 21 | #include "common/common_funcs.h" |
| 22 | #include "common/common_types.h" | 22 | #include "common/common_types.h" |
| 23 | #include "core/hw/gpu.h" | 23 | #include "core/hw/gpu.h" |
| 24 | #include "video_core/regs.h" | 24 | #include "video_core/regs_framebuffer.h" |
| 25 | #include "video_core/regs_texturing.h" | ||
| 25 | #include "video_core/renderer_opengl/gl_resource_manager.h" | 26 | #include "video_core/renderer_opengl/gl_resource_manager.h" |
| 26 | 27 | ||
| 27 | namespace MathUtil { | 28 | namespace MathUtil { |
diff --git a/src/video_core/renderer_opengl/gl_shader_gen.cpp b/src/video_core/renderer_opengl/gl_shader_gen.cpp index 3ea25f302..7abdeba05 100644 --- a/src/video_core/renderer_opengl/gl_shader_gen.cpp +++ b/src/video_core/renderer_opengl/gl_shader_gen.cpp | |||
| @@ -7,15 +7,19 @@ | |||
| 7 | #include "common/assert.h" | 7 | #include "common/assert.h" |
| 8 | #include "common/bit_field.h" | 8 | #include "common/bit_field.h" |
| 9 | #include "common/logging/log.h" | 9 | #include "common/logging/log.h" |
| 10 | #include "video_core/regs.h" | 10 | #include "video_core/regs_framebuffer.h" |
| 11 | #include "video_core/regs_lighting.h" | ||
| 12 | #include "video_core/regs_rasterizer.h" | ||
| 13 | #include "video_core/regs_texturing.h" | ||
| 11 | #include "video_core/renderer_opengl/gl_rasterizer.h" | 14 | #include "video_core/renderer_opengl/gl_rasterizer.h" |
| 12 | #include "video_core/renderer_opengl/gl_shader_gen.h" | 15 | #include "video_core/renderer_opengl/gl_shader_gen.h" |
| 13 | #include "video_core/renderer_opengl/gl_shader_util.h" | 16 | #include "video_core/renderer_opengl/gl_shader_util.h" |
| 14 | 17 | ||
| 15 | using Pica::Regs; | 18 | using Pica::FramebufferRegs; |
| 16 | using Pica::RasterizerRegs; | ||
| 17 | using Pica::LightingRegs; | 19 | using Pica::LightingRegs; |
| 18 | using TevStageConfig = Pica::TexturingRegs::TevStageConfig; | 20 | using Pica::RasterizerRegs; |
| 21 | using Pica::TexturingRegs; | ||
| 22 | using TevStageConfig = TexturingRegs::TevStageConfig; | ||
| 19 | 23 | ||
| 20 | namespace GLShader { | 24 | namespace GLShader { |
| 21 | 25 | ||
| @@ -48,10 +52,10 @@ static void AppendSource(std::string& out, const PicaShaderConfig& config, | |||
| 48 | case Source::Texture0: | 52 | case Source::Texture0: |
| 49 | // Only unit 0 respects the texturing type (according to 3DBrew) | 53 | // Only unit 0 respects the texturing type (according to 3DBrew) |
| 50 | switch (state.texture0_type) { | 54 | switch (state.texture0_type) { |
| 51 | case Pica::TexturingRegs::TextureConfig::Texture2D: | 55 | case TexturingRegs::TextureConfig::Texture2D: |
| 52 | out += "texture(tex[0], texcoord[0])"; | 56 | out += "texture(tex[0], texcoord[0])"; |
| 53 | break; | 57 | break; |
| 54 | case Pica::TexturingRegs::TextureConfig::Projection2D: | 58 | case TexturingRegs::TextureConfig::Projection2D: |
| 55 | out += "textureProj(tex[0], vec3(texcoord[0], texcoord0_w))"; | 59 | out += "textureProj(tex[0], vec3(texcoord[0], texcoord0_w))"; |
| 56 | break; | 60 | break; |
| 57 | default: | 61 | default: |
| @@ -278,8 +282,8 @@ static void AppendAlphaCombiner(std::string& out, TevStageConfig::Operation oper | |||
| 278 | } | 282 | } |
| 279 | 283 | ||
| 280 | /// Writes the if-statement condition used to evaluate alpha testing | 284 | /// Writes the if-statement condition used to evaluate alpha testing |
| 281 | static void AppendAlphaTestCondition(std::string& out, Pica::FramebufferRegs::CompareFunc func) { | 285 | static void AppendAlphaTestCondition(std::string& out, FramebufferRegs::CompareFunc func) { |
| 282 | using CompareFunc = Pica::FramebufferRegs::CompareFunc; | 286 | using CompareFunc = FramebufferRegs::CompareFunc; |
| 283 | switch (func) { | 287 | switch (func) { |
| 284 | case CompareFunc::Never: | 288 | case CompareFunc::Never: |
| 285 | out += "true"; | 289 | out += "true"; |
| @@ -309,7 +313,7 @@ static void AppendAlphaTestCondition(std::string& out, Pica::FramebufferRegs::Co | |||
| 309 | /// Writes the code to emulate the specified TEV stage | 313 | /// Writes the code to emulate the specified TEV stage |
| 310 | static void WriteTevStage(std::string& out, const PicaShaderConfig& config, unsigned index) { | 314 | static void WriteTevStage(std::string& out, const PicaShaderConfig& config, unsigned index) { |
| 311 | const auto stage = | 315 | const auto stage = |
| 312 | static_cast<const Pica::TexturingRegs::TevStageConfig>(config.state.tev_stages[index]); | 316 | static_cast<const TexturingRegs::TevStageConfig>(config.state.tev_stages[index]); |
| 313 | if (!IsPassThroughTevStage(stage)) { | 317 | if (!IsPassThroughTevStage(stage)) { |
| 314 | std::string index_name = std::to_string(index); | 318 | std::string index_name = std::to_string(index); |
| 315 | 319 | ||
| @@ -642,7 +646,7 @@ vec4 secondary_fragment_color = vec4(0.0); | |||
| 642 | )"; | 646 | )"; |
| 643 | 647 | ||
| 644 | // Do not do any sort of processing if it's obvious we're not going to pass the alpha test | 648 | // Do not do any sort of processing if it's obvious we're not going to pass the alpha test |
| 645 | if (state.alpha_test_func == Pica::FramebufferRegs::CompareFunc::Never) { | 649 | if (state.alpha_test_func == FramebufferRegs::CompareFunc::Never) { |
| 646 | out += "discard; }"; | 650 | out += "discard; }"; |
| 647 | return out; | 651 | return out; |
| 648 | } | 652 | } |
| @@ -661,7 +665,7 @@ vec4 secondary_fragment_color = vec4(0.0); | |||
| 661 | 665 | ||
| 662 | out += "float z_over_w = 1.0 - gl_FragCoord.z * 2.0;\n"; | 666 | out += "float z_over_w = 1.0 - gl_FragCoord.z * 2.0;\n"; |
| 663 | out += "float depth = z_over_w * depth_scale + depth_offset;\n"; | 667 | out += "float depth = z_over_w * depth_scale + depth_offset;\n"; |
| 664 | if (state.depthmap_enable == Pica::RasterizerRegs::DepthBuffering::WBuffering) { | 668 | if (state.depthmap_enable == RasterizerRegs::DepthBuffering::WBuffering) { |
| 665 | out += "depth /= gl_FragCoord.w;\n"; | 669 | out += "depth /= gl_FragCoord.w;\n"; |
| 666 | } | 670 | } |
| 667 | 671 | ||
| @@ -675,14 +679,14 @@ vec4 secondary_fragment_color = vec4(0.0); | |||
| 675 | for (size_t index = 0; index < state.tev_stages.size(); ++index) | 679 | for (size_t index = 0; index < state.tev_stages.size(); ++index) |
| 676 | WriteTevStage(out, config, (unsigned)index); | 680 | WriteTevStage(out, config, (unsigned)index); |
| 677 | 681 | ||
| 678 | if (state.alpha_test_func != Pica::FramebufferRegs::CompareFunc::Always) { | 682 | if (state.alpha_test_func != FramebufferRegs::CompareFunc::Always) { |
| 679 | out += "if ("; | 683 | out += "if ("; |
| 680 | AppendAlphaTestCondition(out, state.alpha_test_func); | 684 | AppendAlphaTestCondition(out, state.alpha_test_func); |
| 681 | out += ") discard;\n"; | 685 | out += ") discard;\n"; |
| 682 | } | 686 | } |
| 683 | 687 | ||
| 684 | // Append fog combiner | 688 | // Append fog combiner |
| 685 | if (state.fog_mode == Pica::TexturingRegs::FogMode::Fog) { | 689 | if (state.fog_mode == TexturingRegs::FogMode::Fog) { |
| 686 | // Get index into fog LUT | 690 | // Get index into fog LUT |
| 687 | if (state.fog_flip) { | 691 | if (state.fog_flip) { |
| 688 | out += "float fog_index = (1.0 - depth) * 128.0;\n"; | 692 | out += "float fog_index = (1.0 - depth) * 128.0;\n"; |
diff --git a/src/video_core/renderer_opengl/pica_to_gl.h b/src/video_core/renderer_opengl/pica_to_gl.h index 4b98dafc4..93d7b0b71 100644 --- a/src/video_core/renderer_opengl/pica_to_gl.h +++ b/src/video_core/renderer_opengl/pica_to_gl.h | |||
| @@ -12,7 +12,9 @@ | |||
| 12 | #include "common/common_funcs.h" | 12 | #include "common/common_funcs.h" |
| 13 | #include "common/common_types.h" | 13 | #include "common/common_types.h" |
| 14 | #include "common/logging/log.h" | 14 | #include "common/logging/log.h" |
| 15 | #include "video_core/regs.h" | 15 | #include "video_core/regs_framebuffer.h" |
| 16 | #include "video_core/regs_lighting.h" | ||
| 17 | #include "video_core/regs_texturing.h" | ||
| 16 | 18 | ||
| 17 | using GLvec2 = std::array<GLfloat, 2>; | 19 | using GLvec2 = std::array<GLfloat, 2>; |
| 18 | using GLvec3 = std::array<GLfloat, 3>; | 20 | using GLvec3 = std::array<GLfloat, 3>; |