Sign in
skia
/
skia
/
ed92d84ffd3aeb34c92e25ecb082f089703fc0ec
/
.
/
tests
/
sksl
/
mesh
/
MeshFragment.minified.sksl
blob: b59ebb6c9d2beb6085b763980e3ff5bc63a3af50 [
file
] [
log
] [
blame
]
uniform half3x3 m
;
layout
(
color
)
uniform half4 color
;
float2 main
(
const
Varyings
a
,
out
half4 b
){
b
=
color
;
return
(
float3x3
(
m
)*
float3
(
a
.
coords
,
1.
)).
xy
;}