mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-03 06:49:52 +08:00
- Remove MemoryProperties from api layer - Delete mem_obj_types & mem_obj_types_common MemoryProperties is now fully replaced by MemoryPropertiesFlags Related-To: NEO-3132 Change-Id: I114a887454a187571c22bfd371ef7bf11dd493fd Signed-off-by: Gibala Krzysztof <krzysztof.gibala@intel.com>
22 lines
510 B
C++
22 lines
510 B
C++
/*
|
|
* Copyright (C) 2019 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#include "public/cl_ext_private.h"
|
|
|
|
#include "memory_properties_flags.h"
|
|
|
|
namespace NEO {
|
|
|
|
class MemoryPropertiesFlagsParser {
|
|
public:
|
|
static void addExtraMemoryPropertiesFlags(MemoryPropertiesFlags &propertiesFlags, cl_mem_flags flags, cl_mem_flags_intel flagsIntel);
|
|
|
|
static MemoryPropertiesFlags createMemoryPropertiesFlags(cl_mem_flags flags, cl_mem_flags_intel flagsIntel);
|
|
};
|
|
} // namespace NEO
|