Remove alignedCpuPtr from WddmAllocation

- also switch to make_unique in wddm memory manager functions.

Change-Id: I2f7cf412a993040439466f1971d935fb8429ce7c
This commit is contained in:
Mrozek, Michal
2018-10-31 10:05:34 +01:00
committed by sys_ocldev
parent 1822fb0747
commit 8bec1906ec
6 changed files with 43 additions and 56 deletions

View File

@@ -12,7 +12,7 @@ namespace OCLRT {
class MockWddmAllocation : public WddmAllocation {
public:
MockWddmAllocation() : WddmAllocation(nullptr, 0, nullptr, nullptr, MemoryPool::MemoryNull, 1u) {
MockWddmAllocation() : WddmAllocation(nullptr, 0, nullptr, MemoryPool::MemoryNull, 1u) {
}
};