mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-10-12 03:07:46 +00:00
video_core: Keep the definition of DimensionControl consistent with nvidia open doc
This commit is contained in:
parent
0f336df1ea
commit
c7675caf71
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