summaryrefslogtreecommitdiffstats
path: root/dom/canvas/test/webgl-conf/checkout/conformance/ogles/GL/build/CG_Data_Types_frag.frag
blob: 4f31090ebf320727056d0fe0864d2c018b0b7c8c (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
26
27
28
/*
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.
*/


#ifdef GL_ES
precision mediump float;
#endif
void main()
{
	half h1; // Not a basic type.
	half2 h2; // Not a basic type.
	half3 h3; // Not a basic type.
	half4 h4; // Not a basic type.
	float2 f2; // Not a basic type.
	float3 f3; // Not a basic type.
	float4 f4; // Not a basic type.
	fixed fx1; // Not a basic type.
	fixed2 fx2; // Not a basic type.
	fixed3 fx3; // Not a basic type.
	fixed4 fx4; // Not a basic type.
	float3x3 f3x3; // Not a basic type.
	float2x4 f2x4; // Not a basic type.
	half4x4 h4x4; // Not a basic type.
}