[28/n] Internal 4GB allocator.

Avoid default parameter to getIndirectHeap.

Change-Id: I105ceaa4b5e9b23ce8dc96631410b9535e5a44e0
This commit is contained in:
Mrozek, Michal
2018-04-16 16:39:00 +02:00
committed by sys_ocldev
parent aa784e6cdd
commit 87b8b6e261
11 changed files with 65 additions and 65 deletions

View File

@@ -594,7 +594,7 @@ TEST_P(CommandQueueIndirectHeapTest, GivenCommandQueueWithHeapWhenGraphicAllocat
const cl_queue_properties props[3] = {CL_QUEUE_PROPERTIES, 0, 0};
MockCommandQueue cmdQ(context.get(), pDevice, props);
auto &ih = cmdQ.getIndirectHeap(this->GetParam());
auto &ih = cmdQ.getIndirectHeap(this->GetParam(), 0u);
auto allocation = ih.getGraphicsAllocation();
EXPECT_NE(nullptr, allocation);