ba38588d88
This was unused and did not work on non-GLSL backends. Change-Id: I6bd314d43cfefa64871b5c0e964b5ae52e494164 Bug: skia:10757 Reviewed-on: https://skia-review.googlesource.com/c/skia/+/319778 Commit-Queue: John Stiles <johnstiles@google.com> Commit-Queue: Chris Dalton <csmartdalton@google.com> Auto-Submit: John Stiles <johnstiles@google.com> Reviewed-by: Chris Dalton <csmartdalton@google.com>
10 lines
254 B
Plaintext
10 lines
254 B
Plaintext
// defines built-in interfaces supported by SkiaSL vertex shaders
|
|
|
|
out sk_PerVertex {
|
|
layout(builtin=0) float4 sk_Position;
|
|
layout(builtin=1) float sk_PointSize;
|
|
};
|
|
|
|
layout(builtin=42) in int sk_VertexID;
|
|
layout(builtin=43) in int sk_InstanceID;
|