mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-22 10:17:01 +08:00
Refactor GraphicsAllocation class
move most of members to protected section merge related members into structs Change-Id: Ief2e092aa5e61ca6f13308f9d9b1937ea6c913b4 Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
This commit is contained in:
committed by
sys_ocldev
parent
e75e5808cc
commit
6fb28dd828
@@ -414,9 +414,9 @@ TEST_P(CommandQueueIndirectHeapTest, givenIndirectObjectHeapWhenItIsQueriedForIn
|
||||
|
||||
auto &indirectHeap = cmdQ.getIndirectHeap(this->GetParam(), 8192);
|
||||
if (this->GetParam() == IndirectHeap::INDIRECT_OBJECT) {
|
||||
EXPECT_TRUE(indirectHeap.getGraphicsAllocation()->is32BitAllocation);
|
||||
EXPECT_TRUE(indirectHeap.getGraphicsAllocation()->is32BitAllocation());
|
||||
} else {
|
||||
EXPECT_FALSE(indirectHeap.getGraphicsAllocation()->is32BitAllocation);
|
||||
EXPECT_FALSE(indirectHeap.getGraphicsAllocation()->is32BitAllocation());
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user