mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-03 14:55:24 +08:00
fix: bcs mem fill pattern alignment
Related-To: NEO-13928 Signed-off-by: Bartosz Dunajski <bartosz.dunajski@intel.com>
This commit is contained in:
committed by
Compute-Runtime-Automation
parent
3bef9f886a
commit
dd1e85a3d4
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user