mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-30 01:35:20 +08:00
- If resources is constant arg it means it will only be read - Therefore even for read_write buffer we may turn on caching. Change-Id: Id2c34d4993111bf5c6523a1946464c397db95686 Signed-off-by: Mrozek, Michal <michal.mrozek@intel.com>
17 lines
334 B
C++
17 lines
334 B
C++
/*
|
|
* Copyright (C) 2017-2019 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "runtime/mem_obj/buffer_base.inl"
|
|
|
|
namespace NEO {
|
|
|
|
template <typename GfxFamily>
|
|
void BufferHw<GfxFamily>::appendBufferState(void *memory, Context *context, GraphicsAllocation *gfxAllocation, bool isReadOnly) {
|
|
}
|
|
|
|
} // namespace NEO
|