mirror of
https://github.com/intel/compute-runtime.git
synced 2025-09-20 13:11:34 +08:00
Buffer-to-Buffer blit operations support
Change-Id: I76c9fae83fa2a31bd6108999c7f77f4a47c47f1b Signed-off-by: Dunajski, Bartosz <bartosz.dunajski@intel.com> Related-To: NEO-3020
This commit is contained in:

committed by
sys_ocldev

parent
26252824e3
commit
27654c9282
@ -51,8 +51,9 @@ static const uint64_t maxSvmAddress = is64bit ? maxNBitValue<47> : maxNBitValue<
|
||||
namespace BlitterConstants {
|
||||
static constexpr uint64_t maxBlitWidth = 0x7FC0; // 0x7FFF aligned to cacheline size
|
||||
static constexpr uint64_t maxBlitHeight = 0x7FFF;
|
||||
enum class BlitWithHostPtrDirection {
|
||||
ToHostPtr,
|
||||
FromHostPtr
|
||||
enum class BlitDirection {
|
||||
BufferToHostPtr,
|
||||
HostPtrToBuffer,
|
||||
BufferToBuffer
|
||||
};
|
||||
} // namespace BlitterConstants
|
||||
|
Reference in New Issue
Block a user