Skip to content

Commit 5bb0d8c

Browse files
committed
Remove type that is not used.
Change-Id: I00571ce2f8a1dddbce6645ae753bc99de1ff7a33 Signed-off-by: Mrozek, Michal <[email protected]>
1 parent 5de9d6a commit 5bb0d8c

File tree

4 files changed

+0
-5
lines changed

4 files changed

+0
-5
lines changed

runtime/memory_manager/graphics_allocation.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@ class GraphicsAllocation : public IDNode<GraphicsAllocation> {
4545
BUFFER_HOST_MEMORY,
4646
COMMAND_BUFFER,
4747
CONSTANT_SURFACE,
48-
DYNAMIC_STATE_HEAP,
4948
EXTERNAL_HOST_PTR,
5049
FILL_PATTERN,
5150
GLOBAL_SURFACE,

runtime/os_interface/debug_settings_manager.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -314,8 +314,6 @@ const char *DebugSettingsManager<DebugLevel>::getAllocationTypeString(GraphicsAl
314314
return "INDIRECT_OBJECT_HEAP";
315315
case GraphicsAllocation::AllocationType::SURFACE_STATE_HEAP:
316316
return "SURFACE_STATE_HEAP";
317-
case GraphicsAllocation::AllocationType::DYNAMIC_STATE_HEAP:
318-
return "DYNAMIC_STATE_HEAP";
319317
case GraphicsAllocation::AllocationType::SHARED_RESOURCE_COPY:
320318
return "SHARED_RESOURCE_COPY";
321319
case GraphicsAllocation::AllocationType::SVM:

unit_tests/memory_manager/memory_manager_allocate_in_preferred_pool_tests.inl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,6 @@ INSTANTIATE_TEST_CASE_P(Allow32BitAnd64kbPagesTypes,
150150
::testing::ValuesIn(allocationTypesWith32BitAnd64KbPagesAllowed));
151151

152152
static const GraphicsAllocation::AllocationType allocationTypesWith32BitAnd64KbPagesNotAllowed[] = {GraphicsAllocation::AllocationType::COMMAND_BUFFER,
153-
GraphicsAllocation::AllocationType::DYNAMIC_STATE_HEAP,
154153
GraphicsAllocation::AllocationType::TIMESTAMP_PACKET_TAG_BUFFER,
155154
GraphicsAllocation::AllocationType::PROFILING_TAG_BUFFER,
156155
GraphicsAllocation::AllocationType::IMAGE,

unit_tests/os_interface/debug_settings_manager_tests.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -890,7 +890,6 @@ AllocationTypeTestCase allocationTypeValues[] = {
890890
{GraphicsAllocation::AllocationType::INSTRUCTION_HEAP, "INSTRUCTION_HEAP"},
891891
{GraphicsAllocation::AllocationType::INDIRECT_OBJECT_HEAP, "INDIRECT_OBJECT_HEAP"},
892892
{GraphicsAllocation::AllocationType::SURFACE_STATE_HEAP, "SURFACE_STATE_HEAP"},
893-
{GraphicsAllocation::AllocationType::DYNAMIC_STATE_HEAP, "DYNAMIC_STATE_HEAP"},
894893
{GraphicsAllocation::AllocationType::SHARED_RESOURCE_COPY, "SHARED_RESOURCE_COPY"},
895894
{GraphicsAllocation::AllocationType::SVM, "SVM"},
896895
{GraphicsAllocation::AllocationType::EXTERNAL_HOST_PTR, "EXTERNAL_HOST_PTR"},

0 commit comments

Comments
 (0)