• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// defines built-in interfaces supported by SkiaSL fragment shaders
2
3// See "enum SpvBuiltIn_" in ./spirv.h
4layout(builtin=15) in float4 sk_FragCoord;
5layout(builtin=17) in bool sk_Clockwise;  // Similar to gl_FrontFacing, but defined in device space.
6
7layout(location=0,index=0,builtin=10001) out half4 sk_FragColor;
8layout(builtin=10008) half4 sk_LastFragColor;
9layout(builtin=10012) out half4 sk_SecondaryFragColor;
10