mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-03 06:49:52 +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>
24 lines
365 B
C++
24 lines
365 B
C++
/*
|
|
* Copyright (C) 2017-2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#include <cstdint>
|
|
#include <cstdlib>
|
|
|
|
namespace NEO {
|
|
class IndirectHeap;
|
|
|
|
class HeapDirtyState {
|
|
public:
|
|
bool updateAndCheck(const IndirectHeap *heap);
|
|
|
|
protected:
|
|
uint64_t gpuBaseAddress = 0llu;
|
|
size_t sizeInPages = 0u;
|
|
};
|
|
} // namespace NEO
|