summaryrefslogtreecommitdiff
path: root/src/video_core/dirty_flags.cpp
diff options
context:
space:
mode:
authorGravatar liamwhite2022-10-11 17:22:40 -0400
committerGravatar GitHub2022-10-11 17:22:40 -0400
commit133a68ee9b420d30a58fe7ddd8c03065324a4d70 (patch)
treee2a8f89c372b545c6cabbcc53a9d725a6fe2cdb1 /src/video_core/dirty_flags.cpp
parentMerge pull request #9044 from lat9nq/mingw-gcc-revert (diff)
parentFix stencil func registers, make clip control equivalent to how it was before... (diff)
downloadyuzu-133a68ee9b420d30a58fe7ddd8c03065324a4d70.tar.gz
yuzu-133a68ee9b420d30a58fe7ddd8c03065324a4d70.tar.xz
yuzu-133a68ee9b420d30a58fe7ddd8c03065324a4d70.zip
Merge pull request #9048 from Kelebek1/regs
[video_core] Fix stencil mask registers
Diffstat (limited to 'src/video_core/dirty_flags.cpp')
-rw-r--r--src/video_core/dirty_flags.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/dirty_flags.cpp b/src/video_core/dirty_flags.cpp
index 1039e036f..c2ecc12f5 100644
--- a/src/video_core/dirty_flags.cpp
+++ b/src/video_core/dirty_flags.cpp
@@ -61,7 +61,7 @@ void SetupDirtyRenderTargets(Maxwell3D::DirtyState::Tables& tables) {
61} 61}
62 62
63void SetupDirtyShaders(Maxwell3D::DirtyState::Tables& tables) { 63void SetupDirtyShaders(Maxwell3D::DirtyState::Tables& tables) {
64 FillBlock(tables[0], OFF(pipelines), NUM(pipelines) * Maxwell3D::Regs::MaxShaderProgram, 64 FillBlock(tables[0], OFF(pipelines), NUM(pipelines[0]) * Maxwell3D::Regs::MaxShaderProgram,
65 Shaders); 65 Shaders);
66} 66}
67} // Anonymous namespace 67} // Anonymous namespace