aboutsummaryrefslogtreecommitdiffstats
path: root/share/qtcreator/glsl/glsl_es_100.vert
blob: 62f1eb805c3f8787fdbd47a02840f6dc55513407 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0 WITH Qt-GPL-exception-1.0

// Vertex shader special variables.
highp   vec4  gl_Position;
mediump float gl_PointSize;

// Texture level-of-detail functions.
vec4 texture2DLod(sampler2D sampler, vec2 coord, float lod);
vec4 texture2DProjLod(sampler2D sampler, vec3 coord, float lod);
vec4 texture2DProjLod(sampler2D sampler, vec4 coord, float lod);
vec4 textureCubeLod(samplerCube sampler, vec3 coord, float lod);