Skip to content

Commit 4b4d21a

Browse files
fix: change SamplerState IndirectStatePointer functions
- set and get ExtendedIndirectStatePointer Related-To: NEO-7063 Signed-off-by: Mateusz Hoppe <[email protected]>
1 parent a230c76 commit 4b4d21a

File tree

3 files changed

+24
-16
lines changed

3 files changed

+24
-16
lines changed

shared/source/generated/gen12lp/hw_cmds_generated_gen12lp.inl

+7-7
Original file line numberDiff line numberDiff line change
@@ -3132,15 +3132,15 @@ typedef struct tagSAMPLER_STATE {
31323132
INDIRECTSTATEPOINTER_ALIGN_SIZE = 0x40,
31333133
} INDIRECTSTATEPOINTER;
31343134
inline void setIndirectStatePointer(const uint32_t value) {
3135-
UNRECOVERABLE_IF(value > 0xffffff);
3136-
TheStructure.Common.IndirectStatePointer = static_cast<uint32_t>(value) >> INDIRECTSTATEPOINTER_BIT_SHIFT;
3137-
}
3138-
inline uint32_t getIndirectStatePointer() const {
3139-
return TheStructure.Common.IndirectStatePointer << INDIRECTSTATEPOINTER_BIT_SHIFT;
3135+
UNRECOVERABLE_IF(value & 0x3f);
3136+
TheStructure.Common.IndirectStatePointer = static_cast<uint32_t>(value & 0xffffc0) >> INDIRECTSTATEPOINTER_BIT_SHIFT;
3137+
setExtendedIndirectStatePointer(value);
31403138
}
31413139
inline void setExtendedIndirectStatePointer(const uint32_t value) {
3142-
UNRECOVERABLE_IF(value > 0xff);
3143-
TheStructure.Common.ExtendedIndirectStatePointer = value;
3140+
TheStructure.Common.ExtendedIndirectStatePointer = static_cast<uint32_t>(value & 0xff000000) >> 24;
3141+
}
3142+
inline uint64_t getIndirectStatePointer() const {
3143+
return (TheStructure.Common.ExtendedIndirectStatePointer << 24) | (TheStructure.Common.IndirectStatePointer << INDIRECTSTATEPOINTER_BIT_SHIFT);
31443144
}
31453145
inline uint32_t getExtendedIndirectStatePointer() const {
31463146
return TheStructure.Common.ExtendedIndirectStatePointer;

shared/source/generated/xe_hpc_core/hw_cmds_generated_xe_hpc_core.inl

+8-4
Original file line numberDiff line numberDiff line change
@@ -2782,12 +2782,16 @@ typedef struct tagSAMPLER_STATE {
27822782
INDIRECTSTATEPOINTER_BIT_SHIFT = 0x6,
27832783
INDIRECTSTATEPOINTER_ALIGN_SIZE = 0x40,
27842784
} INDIRECTSTATEPOINTER;
2785-
inline void setIndirectStatePointer(const uint64_t value) {
2786-
UNRECOVERABLE_IF(value > 0xffffc0L);
2787-
TheStructure.Common.IndirectStatePointer = static_cast<uint32_t>(value) >> INDIRECTSTATEPOINTER_BIT_SHIFT;
2785+
inline void setIndirectStatePointer(const uint32_t value) {
2786+
UNRECOVERABLE_IF(value & 0x3f);
2787+
TheStructure.Common.IndirectStatePointer = static_cast<uint32_t>(value & 0xffffc0) >> INDIRECTSTATEPOINTER_BIT_SHIFT;
2788+
setExtendedIndirectStatePointer(value);
2789+
}
2790+
inline void setExtendedIndirectStatePointer(const uint32_t value) {
2791+
TheStructure.Common.ExtendedIndirectStatePointer = static_cast<uint32_t>(value & 0xff000000) >> 24;
27882792
}
27892793
inline uint64_t getIndirectStatePointer() const {
2790-
return TheStructure.Common.IndirectStatePointer << INDIRECTSTATEPOINTER_BIT_SHIFT;
2794+
return (TheStructure.Common.ExtendedIndirectStatePointer << 24) | (TheStructure.Common.IndirectStatePointer << INDIRECTSTATEPOINTER_BIT_SHIFT);
27912795
}
27922796
inline void setTczAddressControlMode(const TEXTURE_COORDINATE_MODE value) {
27932797
TheStructure.Common.TczAddressControlMode = value;

shared/source/generated/xe_hpg_core/hw_cmds_generated_xe_hpg_core.inl

+9-5
Original file line numberDiff line numberDiff line change
@@ -2239,7 +2239,7 @@ typedef struct tagSAMPLER_STATE {
22392239
uint32_t ReturnFilterWeightForBorderTexels : BITFIELD_RANGE(3, 3);
22402240
uint32_t Reserved_68 : BITFIELD_RANGE(4, 5);
22412241
uint32_t IndirectStatePointer : BITFIELD_RANGE(6, 23);
2242-
uint32_t Reserved_88 : BITFIELD_RANGE(24, 31);
2242+
uint32_t ExtendedIndirectStatePointer : BITFIELD_RANGE(24, 31);
22432243
uint32_t TczAddressControlMode : BITFIELD_RANGE(0, 2);
22442244
uint32_t TcyAddressControlMode : BITFIELD_RANGE(3, 5);
22452245
uint32_t TcxAddressControlMode : BITFIELD_RANGE(6, 8);
@@ -2531,11 +2531,15 @@ typedef struct tagSAMPLER_STATE {
25312531
INDIRECTSTATEPOINTER_ALIGN_SIZE = 0x40,
25322532
} INDIRECTSTATEPOINTER;
25332533
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);
25362537
}
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);
25392543
}
25402544
inline void setTczAddressControlMode(const TEXTURE_COORDINATE_MODE value) {
25412545
TheStructure.Common.TczAddressControlMode = value;

0 commit comments

Comments
 (0)