1617a3babSopenharmony_ci/* 2617a3babSopenharmony_ci** Copyright (c) 2021 The Khronos Group Inc. 3617a3babSopenharmony_ci** 4617a3babSopenharmony_ci** Permission is hereby granted, free of charge, to any person obtaining a copy 5617a3babSopenharmony_ci** of this software and/or associated documentation files (the "Materials"), 6617a3babSopenharmony_ci** to deal in the Materials without restriction, including without limitation 7617a3babSopenharmony_ci** the rights to use, copy, modify, merge, publish, distribute, sublicense, 8617a3babSopenharmony_ci** and/or sell copies of the Materials, and to permit persons to whom the 9617a3babSopenharmony_ci** Materials are furnished to do so, subject to the following conditions: 10617a3babSopenharmony_ci** 11617a3babSopenharmony_ci** The above copyright notice and this permission notice shall be included in 12617a3babSopenharmony_ci** all copies or substantial portions of the Materials. 13617a3babSopenharmony_ci** 14617a3babSopenharmony_ci** MODIFICATIONS TO THIS FILE MAY MEAN IT NO LONGER ACCURATELY REFLECTS KHRONOS 15617a3babSopenharmony_ci** STANDARDS. THE UNMODIFIED, NORMATIVE VERSIONS OF KHRONOS SPECIFICATIONS AND 16617a3babSopenharmony_ci** HEADER INFORMATION ARE LOCATED AT https://www.khronos.org/registry/ 17617a3babSopenharmony_ci** 18617a3babSopenharmony_ci** THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS 19617a3babSopenharmony_ci** OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 20617a3babSopenharmony_ci** FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 21617a3babSopenharmony_ci** THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 22617a3babSopenharmony_ci** LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 23617a3babSopenharmony_ci** FROM,OUT OF OR IN CONNECTION WITH THE MATERIALS OR THE USE OR OTHER DEALINGS 24617a3babSopenharmony_ci** IN THE MATERIALS. 25617a3babSopenharmony_ci*/ 26617a3babSopenharmony_ci 27617a3babSopenharmony_ci#ifndef GLSLextQCOM_H 28617a3babSopenharmony_ci#define GLSLextQCOM_H 29617a3babSopenharmony_ci 30617a3babSopenharmony_cienum BuiltIn; 31617a3babSopenharmony_cienum Decoration; 32617a3babSopenharmony_cienum Op; 33617a3babSopenharmony_cienum Capability; 34617a3babSopenharmony_ci 35617a3babSopenharmony_cistatic const int GLSLextQCOMVersion = 100; 36617a3babSopenharmony_cistatic const int GLSLextQCOMRevision = 1; 37617a3babSopenharmony_ci 38617a3babSopenharmony_ci//SPV_QCOM_image_processing 39617a3babSopenharmony_ciconst char* const E_SPV_QCOM_image_processing = "SPV_QCOM_image_processing"; 40617a3babSopenharmony_ci 41617a3babSopenharmony_ci#endif // #ifndef GLSLextQCOM_H 42