Sign in
dawn
/
dawn
/
9360046a86f67db1794f05ad33655e3305bfa695
/
.
/
test
/
expressions
/
binary
/
mul
/
vec3-mat3x3
/
f32.wgsl.expected.glsl
blob: 7b6342be44fbbedfa92cf701c3e3794853c5c32e [
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
();
}