summaryrefslogtreecommitdiffstats
path: root/src/video_core/engines
diff options
context:
space:
mode:
authorFeng Chen <vonchenplus@gmail.com>2023-03-15 14:17:44 +0100
committerFeng Chen <vonchenplus@gmail.com>2023-03-31 06:33:07 +0200
commitff2089fdf5c25e439099fed2a8bc5029aa7985eb (patch)
treeaf706722c8577d0ebbdd18bbf5859acf8d3dec52 /src/video_core/engines
parentvideo_core: Better defined ImageInfo parameters (diff)
downloadyuzu-ff2089fdf5c25e439099fed2a8bc5029aa7985eb.tar
yuzu-ff2089fdf5c25e439099fed2a8bc5029aa7985eb.tar.gz
yuzu-ff2089fdf5c25e439099fed2a8bc5029aa7985eb.tar.bz2
yuzu-ff2089fdf5c25e439099fed2a8bc5029aa7985eb.tar.lz
yuzu-ff2089fdf5c25e439099fed2a8bc5029aa7985eb.tar.xz
yuzu-ff2089fdf5c25e439099fed2a8bc5029aa7985eb.tar.zst
yuzu-ff2089fdf5c25e439099fed2a8bc5029aa7985eb.zip
Diffstat (limited to 'src/video_core/engines')
-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;