summaryrefslogtreecommitdiffstats
path: root/dom/canvas/test/webgl-conf/checkout/conformance/ogles/GL2Tests/precision_specifiers/precision_specifiers.vert
blob: bc68fc388134f523c8f5e4bfd378e5f0b0ecbae3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/*
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 highp vec4 gtf_Color;
attribute highp vec4 gtf_Vertex;
uniform highp mat4 gtf_ModelViewProjectionMatrix;
varying highp vec4 color;

void main (void)
{
	mediump int x = 5;
	lowp int y = 3;
	mediump float x2 = 5.0;
	lowp float y2 = 1.0;
	
	color = vec4(x + y, x2 * y2, x, 1.0);
	
	color = gtf_Color;
	gl_Position = gtf_ModelViewProjectionMatrix * gtf_Vertex;
}