Sign in
skia
/
skia
/
67c3ee616fb5014d483c5314900eea663f10f1e3
/
.
/
tests
/
sksl
/
mesh
/
MeshVertex.minified.sksl
blob: 3c51ef90540d534250dbdc2182156687790cd39f [
file
] [
log
] [
blame
]
uniform
float
t
[
2
];
uniform half3x3 m
;
Varyings
main
(
const
Attributes
a
){
Varyings
b
;
b
.
coords
=(
float3x3
(
m
)*
float3
(
a
.
coords
+
float2
(
t
[
0
],
t
[
1
]),
1.
)).
xy
;
b
.
position
=
a
.
pos
;
return
b
;}