mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-30 01:35:20 +08:00
- move some files to core - remove unnecessary includes Related-To: NEO-4175 Change-Id: Ib33dff644452c7cfd6fda7e9bb4b68cd6eb3a61c Signed-off-by: Mateusz Hoppe <mateusz.hoppe@intel.com>
26 lines
614 B
C++
26 lines
614 B
C++
/*
|
|
* Copyright (C) 2017-2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "core/helpers/dirty_state_helpers.h"
|
|
|
|
#include "core/indirect_heap/indirect_heap.h"
|
|
|
|
using namespace NEO;
|
|
|
|
bool HeapDirtyState::updateAndCheck(const IndirectHeap *heap) {
|
|
if (!heap->getGraphicsAllocation()) {
|
|
sizeInPages = 0llu;
|
|
return true;
|
|
}
|
|
bool dirty = gpuBaseAddress != heap->getHeapGpuBase() || sizeInPages != heap->getHeapSizeInPages();
|
|
if (dirty) {
|
|
gpuBaseAddress = heap->getHeapGpuBase();
|
|
sizeInPages = heap->getHeapSizeInPages();
|
|
}
|
|
return dirty;
|
|
}
|