Correct tests: pass valid device bitfield [4/n]

Related-To: NEO-4645

Change-Id: Ib105d811711b7a4fdfad91ac93606cfdeb6d4ccb
Signed-off-by: Andrzej Swierczynski <andrzej.swierczynski@intel.com>
This commit is contained in:
Andrzej Swierczynski
2020-06-16 15:46:15 +02:00
committed by sys_ocldev
parent 4623707eca
commit 5d24d51ea6
9 changed files with 104 additions and 76 deletions

View File

@@ -38,7 +38,11 @@ struct AllocationProperties {
AllocationProperties(uint32_t rootDeviceIndex, size_t size,
GraphicsAllocation::AllocationType allocationType)
: AllocationProperties(rootDeviceIndex, true, size, allocationType, false, {}) {}
: AllocationProperties(rootDeviceIndex, size, allocationType, 0b1) {}
AllocationProperties(uint32_t rootDeviceIndex, size_t size,
GraphicsAllocation::AllocationType allocationType, DeviceBitfield subDevicesBitfieldParam)
: AllocationProperties(rootDeviceIndex, true, size, allocationType, false, subDevicesBitfieldParam) {}
AllocationProperties(uint32_t rootDeviceIndex, bool allocateMemory,
ImageInfo &imgInfo,