Sign in
dawn
/
dawn
/
e7099d4f3bb22e23e975099fb1d1314f76cd6227
/
.
/
test
/
tint
/
expressions
/
binary
/
mul
/
mat3x3-vec3
/
f32.wgsl.expected.glsl
blob: 42cee27835aee7e1d1d56aa979dc271271c6dee1 [
file
] [
log
] [
blame
]
#version 310 es
precision mediump
float
;
struct
S
{
mat3 matrix
;
vec3 vector
;
};
layout
(
binding
=
0
)
uniform S_1
{
mat3 matrix
;
vec3 vector
;
}
data
;
void
tint_symbol
()
{
vec3 x
=
(
data
.
matrix
*
data
.
vector
);
}
void
main
()
{
tint_symbol
();
return
;
}