1b2a28edaSopenharmony_ci// Copyright (c) 2016 The Khronos Group Inc. 2b2a28edaSopenharmony_ci// 3b2a28edaSopenharmony_ci// Permission is hereby granted, free of charge, to any person obtaining a 4b2a28edaSopenharmony_ci// copy of this software and/or associated documentation files (the 5b2a28edaSopenharmony_ci// "Materials"), to deal in the Materials without restriction, including 6b2a28edaSopenharmony_ci// without limitation the rights to use, copy, modify, merge, publish, 7b2a28edaSopenharmony_ci// distribute, sublicense, and/or sell copies of the Materials, and to 8b2a28edaSopenharmony_ci// permit persons to whom the Materials are furnished to do so, subject to 9b2a28edaSopenharmony_ci// the following conditions: 10b2a28edaSopenharmony_ci// 11b2a28edaSopenharmony_ci// The above copyright notice and this permission notice shall be included 12b2a28edaSopenharmony_ci// in all copies or substantial portions of the Materials. 13b2a28edaSopenharmony_ci// 14b2a28edaSopenharmony_ci// MODIFICATIONS TO THIS FILE MAY MEAN IT NO LONGER ACCURATELY REFLECTS 15b2a28edaSopenharmony_ci// KHRONOS STANDARDS. THE UNMODIFIED, NORMATIVE VERSIONS OF KHRONOS 16b2a28edaSopenharmony_ci// SPECIFICATIONS AND HEADER INFORMATION ARE LOCATED AT 17b2a28edaSopenharmony_ci// https://www.khronos.org/registry/ 18b2a28edaSopenharmony_ci// 19b2a28edaSopenharmony_ci// THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 20b2a28edaSopenharmony_ci// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 21b2a28edaSopenharmony_ci// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 22b2a28edaSopenharmony_ci// IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY 23b2a28edaSopenharmony_ci// CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, 24b2a28edaSopenharmony_ci// TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE 25b2a28edaSopenharmony_ci// MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. 26b2a28edaSopenharmony_ci 27b2a28edaSopenharmony_ci#include <spirv/unified1/GLSL.std.450.h> 28b2a28edaSopenharmony_ci#include <spirv/unified1/OpenCL.std.h> 29b2a28edaSopenharmony_ci#include <spirv/unified1/spirv.hpp> 30b2a28edaSopenharmony_ci 31b2a28edaSopenharmony_cinamespace { 32b2a28edaSopenharmony_ci 33b2a28edaSopenharmony_ciconst GLSLstd450 kSin = GLSLstd450Sin; 34b2a28edaSopenharmony_ciconst OpenCLLIB::Entrypoints kNative_cos = OpenCLLIB::Native_cos; 35b2a28edaSopenharmony_ciconst spv::Op kNop = spv::OpNop; 36b2a28edaSopenharmony_ci 37b2a28edaSopenharmony_ci} // anonymous namespace 38