remove unused member

Change-Id: Iba055d55377ca1ea650d483fdefd1940bd1e91f9
Signed-off-by: Artur Harasimiuk <artur.harasimiuk@intel.com>
This commit is contained in:
Artur Harasimiuk
2018-07-09 13:57:05 +02:00
parent e8424f242b
commit 821f31b398
2 changed files with 0 additions and 2 deletions

View File

@ -47,7 +47,6 @@ GraphicsAllocation *OsAgnosticMemoryManager::allocateGraphicsMemory(size_t size,
if (fakeBigAllocations && size > bigAllocation) {
memoryAllocation = new MemoryAllocation(true, (void *)dummyAddress, static_cast<uint64_t>(dummyAddress), size, counter);
counter++;
memoryAllocation->dummyAllocation = true;
memoryAllocation->uncacheable = uncacheable;
return memoryAllocation;
}

View File

@ -33,7 +33,6 @@ class MemoryAllocation : public GraphicsAllocation {
public:
unsigned long long id;
size_t sizeToFree = 0;
bool dummyAllocation = false;
bool uncacheable = false;
void setSharedHandle(osHandle handle) { this->sharedHandle = handle; }