@@ -2239,7 +2239,7 @@ typedef struct tagSAMPLER_STATE {
2239
2239
uint32_t ReturnFilterWeightForBorderTexels : BITFIELD_RANGE(3 , 3 );
2240
2240
uint32_t Reserved_68 : BITFIELD_RANGE(4 , 5 );
2241
2241
uint32_t IndirectStatePointer : BITFIELD_RANGE(6 , 23 );
2242
- uint32_t Reserved_88 : BITFIELD_RANGE(24 , 31 );
2242
+ uint32_t ExtendedIndirectStatePointer : BITFIELD_RANGE(24 , 31 );
2243
2243
uint32_t TczAddressControlMode : BITFIELD_RANGE(0 , 2 );
2244
2244
uint32_t TcyAddressControlMode : BITFIELD_RANGE(3 , 5 );
2245
2245
uint32_t TcxAddressControlMode : BITFIELD_RANGE(6 , 8 );
@@ -2531,11 +2531,15 @@ typedef struct tagSAMPLER_STATE {
2531
2531
INDIRECTSTATEPOINTER_ALIGN_SIZE = 0x40 ,
2532
2532
} INDIRECTSTATEPOINTER;
2533
2533
inline void setIndirectStatePointer (const uint32_t value) {
2534
- DEBUG_BREAK_IF (value > 0xffffc0 );
2535
- TheStructure.Common .IndirectStatePointer = static_cast <uint32_t >(value) >> INDIRECTSTATEPOINTER_BIT_SHIFT;
2534
+ UNRECOVERABLE_IF (value & 0x3f );
2535
+ TheStructure.Common .IndirectStatePointer = static_cast <uint32_t >(value & 0xffffc0 ) >> INDIRECTSTATEPOINTER_BIT_SHIFT;
2536
+ setExtendedIndirectStatePointer (value);
2536
2537
}
2537
- inline uint32_t getIndirectStatePointer () const {
2538
- return TheStructure.Common .IndirectStatePointer << INDIRECTSTATEPOINTER_BIT_SHIFT;
2538
+ inline void setExtendedIndirectStatePointer (const uint32_t value) {
2539
+ TheStructure.Common .ExtendedIndirectStatePointer = static_cast <uint32_t >(value & 0xff000000 ) >> 24 ;
2540
+ }
2541
+ inline uint64_t getIndirectStatePointer () const {
2542
+ return (TheStructure.Common .ExtendedIndirectStatePointer << 24 ) | (TheStructure.Common .IndirectStatePointer << INDIRECTSTATEPOINTER_BIT_SHIFT);
2539
2543
}
2540
2544
inline void setTczAddressControlMode (const TEXTURE_COORDINATE_MODE value) {
2541
2545
TheStructure.Common .TczAddressControlMode = value;
0 commit comments