Sign in
dawn
/
tint
/
6d770093bdf1513ab57bd56c2e00c9b572d16304
/
.
/
test
/
expressions
/
index
/
var
/
let
/
param
/
vector.wgsl.expected.glsl
blob: 3f437d3f8610763713a8f4d004991240a4e1150a [
file
] [
log
] [
blame
]
#version 310 es
precision mediump
float
;
layout
(
local_size_x
=
1
,
local_size_y
=
1
,
local_size_z
=
1
)
in
;
void
unused_entry_point
()
{
return
;
}
float
f
(
int
x
)
{
vec3 v
=
vec3
(
1.0f
,
2.0f
,
3.0f
);
return
v
[
x
];
}