summaryrefslogtreecommitdiffstats
path: root/dom/canvas/test/webgl-conf/checkout/conformance/ogles/GL/build/vertex_vert.vert
blob: ab8cc4555e338c3f370d404de36c99a4f9254845 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/*
Copyright (c) 2019 The Khronos Group Inc.
Use of this source code is governed by an MIT-style license that can be
found in the LICENSE.txt file.
*/


attribute vec4 gtf_Vertex;
void main()
{
    gtf_Vertex = vec4(1.0,2.0,3.0, 4.0); // cannot modify an attribute
}