@@ -845,7 +845,7 @@ Device *Device::create(DriverHandle *driverHandle, NEO::Device *neoDevice, bool
845845 debugSurface = neoDevice->getMemoryManager ()->allocateGraphicsMemoryWithProperties (
846846 {device->getRootDeviceIndex (), true ,
847847 debugSurfaceSize,
848- NEO::GraphicsAllocation:: AllocationType::DEBUG_CONTEXT_SAVE_AREA,
848+ NEO::AllocationType::DEBUG_CONTEXT_SAVE_AREA,
849849 false ,
850850 false ,
851851 device->getNEODevice ()->getDeviceBitfield ()});
@@ -1009,7 +1009,7 @@ NEO::GraphicsAllocation *DeviceImp::allocateManagedMemoryFromHostPtr(void *buffe
10091009 }
10101010
10111011 allocation = neoDevice->getMemoryManager ()->allocateGraphicsMemoryWithProperties (
1012- {getRootDeviceIndex (), false , size, NEO::GraphicsAllocation:: AllocationType::BUFFER_HOST_MEMORY, false , neoDevice->getDeviceBitfield ()},
1012+ {getRootDeviceIndex (), false , size, NEO::AllocationType::BUFFER_HOST_MEMORY, false , neoDevice->getDeviceBitfield ()},
10131013 buffer);
10141014
10151015 if (allocation == nullptr ) {
@@ -1029,7 +1029,7 @@ NEO::GraphicsAllocation *DeviceImp::allocateManagedMemoryFromHostPtr(void *buffe
10291029
10301030NEO::GraphicsAllocation *DeviceImp::allocateMemoryFromHostPtr (const void *buffer, size_t size, bool hostCopyAllowed) {
10311031 NEO::AllocationProperties properties = {getRootDeviceIndex (), false , size,
1032- NEO::GraphicsAllocation:: AllocationType::EXTERNAL_HOST_PTR,
1032+ NEO::AllocationType::EXTERNAL_HOST_PTR,
10331033 false , neoDevice->getDeviceBitfield ()};
10341034 properties.flags .flushL3RequiredForRead = properties.flags .flushL3RequiredForWrite = true ;
10351035 auto allocation = neoDevice->getMemoryManager ()->allocateGraphicsMemoryWithProperties (properties,
@@ -1044,7 +1044,7 @@ NEO::GraphicsAllocation *DeviceImp::allocateMemoryFromHostPtr(const void *buffer
10441044 return allocation;
10451045}
10461046
1047- NEO::GraphicsAllocation *DeviceImp::obtainReusableAllocation (size_t requiredSize, NEO::GraphicsAllocation:: AllocationType type) {
1047+ NEO::GraphicsAllocation *DeviceImp::obtainReusableAllocation (size_t requiredSize, NEO::AllocationType type) {
10481048 auto alloc = allocationsForReuse->detachAllocation (requiredSize, nullptr , nullptr , type);
10491049 if (alloc == nullptr )
10501050 return nullptr ;
0 commit comments