summaryrefslogtreecommitdiffstats
path: root/src/video_core/engines/maxwell_3d.h
diff options
context:
space:
mode:
authorliamwhite <liamwhite@users.noreply.github.com>2023-04-11 17:59:18 +0200
committerGitHub <noreply@github.com>2023-04-11 17:59:18 +0200
commit54b4c84ab6d353867dc483ac35f947d50766c36e (patch)
tree4c78268adfa55161c6f9cf11cc9b577564bd8da1 /src/video_core/engines/maxwell_3d.h
parentMerge pull request #10027 from bylaws/master (diff)
parentvideo_core: Keep the definition of DimensionControl consistent with nvidia open doc (diff)
downloadyuzu-54b4c84ab6d353867dc483ac35f947d50766c36e.tar
yuzu-54b4c84ab6d353867dc483ac35f947d50766c36e.tar.gz
yuzu-54b4c84ab6d353867dc483ac35f947d50766c36e.tar.bz2
yuzu-54b4c84ab6d353867dc483ac35f947d50766c36e.tar.lz
yuzu-54b4c84ab6d353867dc483ac35f947d50766c36e.tar.xz
yuzu-54b4c84ab6d353867dc483ac35f947d50766c36e.tar.zst
yuzu-54b4c84ab6d353867dc483ac35f947d50766c36e.zip
Diffstat (limited to '')
-rw-r--r--src/video_core/engines/maxwell_3d.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/video_core/engines/maxwell_3d.h b/src/video_core/engines/maxwell_3d.h
index c89969bb4..6c19354e1 100644
--- a/src/video_core/engines/maxwell_3d.h
+++ b/src/video_core/engines/maxwell_3d.h
@@ -856,8 +856,8 @@ public:
struct ZetaSize {
enum class DimensionControl : u32 {
- DepthDefinesArray = 0,
- ArraySizeOne = 1,
+ DefineArraySize = 0,
+ ArraySizeIsOne = 1,
};
u32 width;
@@ -1104,8 +1104,8 @@ public:
struct TileMode {
enum class DimensionControl : u32 {
- DepthDefinesArray = 0,
- DepthDefinesDepth = 1,
+ DefineArraySize = 0,
+ DefineDepthSize = 1,
};
union {
BitField<0, 4, u32> block_width;