mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-24 21:18:24 +08:00
Related-To: NEO-7003 Minor: remove empty function calls Signed-off-by: Szymon Morek <szymon.morek@intel.com>
32 lines
788 B
C++
32 lines
788 B
C++
/*
|
|
* Copyright (C) 2020-2022 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "shared/source/helpers/state_base_address.h"
|
|
|
|
namespace NEO {
|
|
|
|
template <typename GfxFamily>
|
|
void StateBaseAddressHelper<GfxFamily>::appendStateBaseAddressParameters(
|
|
STATE_BASE_ADDRESS *stateBaseAddress,
|
|
const IndirectHeap *ssh,
|
|
bool setGeneralStateBaseAddress,
|
|
uint64_t indirectObjectHeapBaseAddress,
|
|
GmmHelper *gmmHelper,
|
|
bool isMultiOsContextCapable,
|
|
MemoryCompressionState memoryCompressionState,
|
|
bool overrideBindlessSurfaceStateBase,
|
|
bool useGlobalAtomics,
|
|
bool areMultipleSubDevicesInContext) {
|
|
}
|
|
|
|
template <typename GfxFamily>
|
|
uint32_t StateBaseAddressHelper<GfxFamily>::getMaxBindlessSurfaceStates() {
|
|
return 0;
|
|
}
|
|
|
|
} // namespace NEO
|