1b2a28edaSopenharmony_ci// Copyright (c) 2020 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 28b2a28edaSopenharmony_ci#ifndef SPIRV_UNIFIED1_AMD_shader_trinary_minmax_H_ 29b2a28edaSopenharmony_ci#define SPIRV_UNIFIED1_AMD_shader_trinary_minmax_H_ 30b2a28edaSopenharmony_ci 31b2a28edaSopenharmony_ci#ifdef __cplusplus 32b2a28edaSopenharmony_ciextern "C" { 33b2a28edaSopenharmony_ci#endif 34b2a28edaSopenharmony_ci 35b2a28edaSopenharmony_cienum { 36b2a28edaSopenharmony_ci AMD_shader_trinary_minmaxRevision = 4, 37b2a28edaSopenharmony_ci AMD_shader_trinary_minmaxRevision_BitWidthPadding = 0x7fffffff 38b2a28edaSopenharmony_ci}; 39b2a28edaSopenharmony_ci 40b2a28edaSopenharmony_cienum AMD_shader_trinary_minmaxInstructions { 41b2a28edaSopenharmony_ci AMD_shader_trinary_minmaxFMin3AMD = 1, 42b2a28edaSopenharmony_ci AMD_shader_trinary_minmaxUMin3AMD = 2, 43b2a28edaSopenharmony_ci AMD_shader_trinary_minmaxSMin3AMD = 3, 44b2a28edaSopenharmony_ci AMD_shader_trinary_minmaxFMax3AMD = 4, 45b2a28edaSopenharmony_ci AMD_shader_trinary_minmaxUMax3AMD = 5, 46b2a28edaSopenharmony_ci AMD_shader_trinary_minmaxSMax3AMD = 6, 47b2a28edaSopenharmony_ci AMD_shader_trinary_minmaxFMid3AMD = 7, 48b2a28edaSopenharmony_ci AMD_shader_trinary_minmaxUMid3AMD = 8, 49b2a28edaSopenharmony_ci AMD_shader_trinary_minmaxSMid3AMD = 9, 50b2a28edaSopenharmony_ci AMD_shader_trinary_minmaxInstructionsMax = 0x7fffffff 51b2a28edaSopenharmony_ci}; 52b2a28edaSopenharmony_ci 53b2a28edaSopenharmony_ci 54b2a28edaSopenharmony_ci#ifdef __cplusplus 55b2a28edaSopenharmony_ci} 56b2a28edaSopenharmony_ci#endif 57b2a28edaSopenharmony_ci 58b2a28edaSopenharmony_ci#endif // SPIRV_UNIFIED1_AMD_shader_trinary_minmax_H_ 59