fix: bcs mem fill pattern alignment

Related-To: NEO-13928

Signed-off-by: Bartosz Dunajski <bartosz.dunajski@intel.com>
This commit is contained in:
Bartosz Dunajski
2025-02-03 11:36:01 +00:00
committed by Compute-Runtime-Automation
parent 3bef9f886a
commit dd1e85a3d4
4 changed files with 34 additions and 5 deletions

View File

@@ -4605,7 +4605,7 @@ typedef struct tagXY_FAST_COLOR_BLT {
return static_cast<CLIENT>(TheStructure.Common.Client);
}
inline void setDestinationPitch(const uint32_t value) {
UNRECOVERABLE_IF(value > 0x3ffff);
UNRECOVERABLE_IF(value > 0x3ffff + 1); // patched
TheStructure.Common.DestinationPitch = value - 1;
}
inline uint32_t getDestinationPitch() const {