summaryrefslogtreecommitdiffstats
path: root/src/video_core/engines/maxwell_3d.h
diff options
context:
space:
mode:
authorSubv <subv2112@gmail.com>2018-04-24 03:03:50 +0200
committerSubv <subv2112@gmail.com>2018-04-25 18:55:28 +0200
commitc16cfbbc6c062491d84a6bc9976027b7a7587fdb (patch)
tree469124577a54f93b859ac9f08357bc5479c30b1a /src/video_core/engines/maxwell_3d.h
parentGPU: Move the Maxwell3D macro uploading code to the inside of the Maxwell3D processor. (diff)
downloadyuzu-c16cfbbc6c062491d84a6bc9976027b7a7587fdb.tar
yuzu-c16cfbbc6c062491d84a6bc9976027b7a7587fdb.tar.gz
yuzu-c16cfbbc6c062491d84a6bc9976027b7a7587fdb.tar.bz2
yuzu-c16cfbbc6c062491d84a6bc9976027b7a7587fdb.tar.lz
yuzu-c16cfbbc6c062491d84a6bc9976027b7a7587fdb.tar.xz
yuzu-c16cfbbc6c062491d84a6bc9976027b7a7587fdb.tar.zst
yuzu-c16cfbbc6c062491d84a6bc9976027b7a7587fdb.zip
Diffstat (limited to 'src/video_core/engines/maxwell_3d.h')
-rw-r--r--src/video_core/engines/maxwell_3d.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video_core/engines/maxwell_3d.h b/src/video_core/engines/maxwell_3d.h
index 8edc3cd38..5cf62fb01 100644
--- a/src/video_core/engines/maxwell_3d.h
+++ b/src/video_core/engines/maxwell_3d.h
@@ -31,7 +31,7 @@ public:
/// Register structure of the Maxwell3D engine.
/// TODO(Subv): This structure will need to be made bigger as more registers are discovered.
struct Regs {
- static constexpr size_t NUM_REGS = 0xE36;
+ static constexpr size_t NUM_REGS = 0xE00;
static constexpr size_t NumRenderTargets = 8;
static constexpr size_t NumViewports = 16;
@@ -613,7 +613,7 @@ public:
u32 size[MaxShaderStage];
} tex_info_buffers;
- INSERT_PADDING_WORDS(0x102);
+ INSERT_PADDING_WORDS(0xCC);
};
std::array<u32, NUM_REGS> reg_array;
};