mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-11 10:38:01 -05:00
video_core: Keep the definition of DimensionControl consistent with nvidia open doc
This commit is contained in:
@ -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;
|
||||
|
Reference in New Issue
Block a user