mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-21 09:14:47 +08:00
Cleaned up files: shared/source/command_stream/command_stream_receiver_hw.h shared/source/compiler_interface/compiler_interface.h shared/source/direct_submission/direct_submission_hw.h shared/source/helpers/dirty_state_helpers.h Related-To: NEO-5548 Signed-off-by: Warchulski, Jaroslaw <jaroslaw.warchulski@intel.com>
24 lines
365 B
C++
24 lines
365 B
C++
/*
|
|
* Copyright (C) 2020-2023 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#include <cstddef>
|
|
#include <cstdint>
|
|
|
|
namespace NEO {
|
|
class IndirectHeap;
|
|
|
|
class HeapDirtyState {
|
|
public:
|
|
bool updateAndCheck(const IndirectHeap *heap);
|
|
|
|
protected:
|
|
uint64_t gpuBaseAddress = 0llu;
|
|
size_t sizeInPages = 0u;
|
|
};
|
|
} // namespace NEO
|