Sign in
dawn
/
dawn
/
e2f35ba8e0a4f8f234660c980a1917f5504482a3
/
.
/
test
/
expressions
/
binary
/
mul
/
vec3-mat3x3
/
f32.wgsl.expected.glsl
blob: 19b9f4285f216d45ec7728ef09c5d94265645d53 [
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
.
vector
*
data
.
matrix
);
return
;
}
void
main
()
{
tint_symbol
();
}