sksl_interp.inc 493 B

12345678910111213141516
  1. STRINGIFY(
  2. $genType cos($genType y);
  3. $genHType cos($genHType y);
  4. float3 cross(float3 x, float3 y);
  5. float dot($genType x, $genType y);
  6. $genType mix($genType x, $genType y, float t);
  7. float2x2 inverse(float2x2 m);
  8. float3x3 inverse(float3x3 m);
  9. float4x4 inverse(float4x4 m);
  10. $genType sin($genType x);
  11. $genHType sin($genHType x);
  12. $genType sqrt($genType x);
  13. $genHType sqrt($genHType x);
  14. $genType tan($genType x);
  15. $genHType tan($genHType x);
  16. )