video_core: Keep the definition of DimensionControl consistent with nvidia open doc
This commit is contained in:
parent
11ffbee5ae
commit
ff2089fdf5
2 changed files with 22 additions and 19 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue