1uniform 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;} 2