diff options
author | Xavi Zhang <[email protected]> | 2014-07-22 04:53:24 -0400 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2017-03-30 14:44:33 +0200 |
commit | f12d430c5959c38b93131999d07278ca8d35b9ca (patch) | |
tree | fcdd8535856ef768a4fabcd544852517f6040ac7 /src/amd/addrlib/addrinterface.h | |
parent | b5d8120a07802bd14e2031642fb426838a71d31b (diff) |
amdgpu/addrlib: add disableLinearOpt flag
Diffstat (limited to 'src/amd/addrlib/addrinterface.h')
-rw-r--r-- | src/amd/addrlib/addrinterface.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/amd/addrlib/addrinterface.h b/src/amd/addrlib/addrinterface.h index 764377a4b47..c6c46845fd5 100644 --- a/src/amd/addrlib/addrinterface.h +++ b/src/amd/addrlib/addrinterface.h @@ -446,7 +446,8 @@ typedef union _ADDR_SURFACE_FLAGS /// This flag indicates we need to follow the alignment with /// CZ families or other ASICs under PX configuration + CZ. UINT_32 nonSplit : 1; ///< CI: depth texture should not be split - UINT_32 reserved : 10; ///< Reserved bits + UINT_32 disableLinearOpt: 1; ///< Disable tile mode optimization to linear + UINT_32 reserved : 9; ///< Reserved bits }; UINT_32 value; |