Sign in
skia
/
skia
/
67c3ee616fb5014d483c5314900eea663f10f1e3
/
.
/
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
;}