diff options
| author | liamwhite <liamwhite@users.noreply.github.com> | 2023-04-11 11:59:18 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-04-11 11:59:18 -0400 |
| commit | 54b4c84ab6d353867dc483ac35f947d50766c36e (patch) | |
| tree | 4c78268adfa55161c6f9cf11cc9b577564bd8da1 /src/video_core/engines | |
| parent | 4f77275cd515162dd1b3dccb96296c4d4a370c8e (diff) | |
| parent | ff2089fdf5c25e439099fed2a8bc5029aa7985eb (diff) | |
Merge pull request #10008 from vonchenplus/texture_cache
video_core: update imageinfo implement
Diffstat (limited to 'src/video_core/engines')
| -rw-r--r-- | src/video_core/engines/maxwell_3d.h | 8 |
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; |
