video_core: Keep the definition of DimensionControl consistent with nvidia open doc

This commit is contained in:
Feng Chen
2023-03-15 21:17:44 +08:00
parent 11ffbee5ae
commit ff2089fdf5
2 changed files with 22 additions and 19 deletions

View File

@ -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;