Warning, /frameworks/kquickcharts/src/shaders/header_es3.glsl is written in an unsupported language. File is not indexed.

0001 #version 300 es
0002 // Important: The line above _must_ be the first line in this file.
0003 
0004 /*
0005  * This file is part of KQuickCharts
0006  * SPDX-FileCopyrightText: 2019 Arjen Hiemstra <ahiemstra@heimr.nl>
0007  *
0008  * SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
0009  */
0010 
0011 // This file contains common directives needed for the shaders to work.
0012 // It is included as the very first bit in the shader.
0013 // Important: If a specific GLSL version is needed, it should be set in this
0014 // file.
0015 
0016 // This file is intended for OpenGLES version 2.0 or greater.
0017 
0018 #extension GL_OES_standard_derivatives : enable
0019 
0020 #define API_ES3