mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-03 14:55:24 +08:00
Update usage of SUPPORTED_IMAGES flag and do not use images when disabled. Use SUPPORTED_2_0 only on fully OCL 2.1 conformant platforms. Signed-off-by: Filip Hazubski <filip.hazubski@intel.com>
19 lines
384 B
C++
19 lines
384 B
C++
/*
|
|
* Copyright (C) 2017-2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#include <string>
|
|
|
|
class KernelBinaryHelper {
|
|
public:
|
|
KernelBinaryHelper(const std::string &name = "copybuffer", bool appendOptionsToFileName = true);
|
|
~KernelBinaryHelper();
|
|
|
|
static const std::string BUILT_INS;
|
|
static const std::string BUILT_INS_WITH_IMAGES;
|
|
};
|