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_gcn_shader_H_
29b2a28edaSopenharmony_ci#define SPIRV_UNIFIED1_AMD_gcn_shader_H_
30b2a28edaSopenharmony_ci
31b2a28edaSopenharmony_ci#ifdef __cplusplus
32b2a28edaSopenharmony_ciextern "C" {
33b2a28edaSopenharmony_ci#endif
34b2a28edaSopenharmony_ci
35b2a28edaSopenharmony_cienum {
36b2a28edaSopenharmony_ci    AMD_gcn_shaderRevision = 2,
37b2a28edaSopenharmony_ci    AMD_gcn_shaderRevision_BitWidthPadding = 0x7fffffff
38b2a28edaSopenharmony_ci};
39b2a28edaSopenharmony_ci
40b2a28edaSopenharmony_cienum AMD_gcn_shaderInstructions {
41b2a28edaSopenharmony_ci    AMD_gcn_shaderCubeFaceIndexAMD = 1,
42b2a28edaSopenharmony_ci    AMD_gcn_shaderCubeFaceCoordAMD = 2,
43b2a28edaSopenharmony_ci    AMD_gcn_shaderTimeAMD = 3,
44b2a28edaSopenharmony_ci    AMD_gcn_shaderInstructionsMax = 0x7fffffff
45b2a28edaSopenharmony_ci};
46b2a28edaSopenharmony_ci
47b2a28edaSopenharmony_ci
48b2a28edaSopenharmony_ci#ifdef __cplusplus
49b2a28edaSopenharmony_ci}
50b2a28edaSopenharmony_ci#endif
51b2a28edaSopenharmony_ci
52b2a28edaSopenharmony_ci#endif // SPIRV_UNIFIED1_AMD_gcn_shader_H_
53