mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-20 00:24:58 +08:00
Change-Id: If7e329fc12fe934eb0f6b1762d3b0d86aab287e6 Signed-off-by: Dunajski, Bartosz <bartosz.dunajski@intel.com>
26 lines
617 B
C++
26 lines
617 B
C++
/*
|
|
* Copyright (C) 2017-2019 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "runtime/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;
|
|
}
|