bfc9be0f77
This will allow us to load these inputs for unit testing in `dm`. Change-Id: Id256ba7c30d3ec94b98048e47af44cf9efe580d5 Bug: skia:11009 Reviewed-on: https://skia-review.googlesource.com/c/skia/+/357282 Commit-Queue: John Stiles <johnstiles@google.com> Auto-Submit: John Stiles <johnstiles@google.com> Reviewed-by: Brian Osman <brianosman@google.com>
23 lines
454 B
GLSL
23 lines
454 B
GLSL
|
|
out vec4 sk_FragColor;
|
|
bool BF = true;
|
|
bool BI = true;
|
|
bool BB = true;
|
|
float FF = 1.2300000190734863;
|
|
float FI = 1.0;
|
|
float FB = 1.0;
|
|
int IF = 1;
|
|
int II = 1;
|
|
int IB = 1;
|
|
void main() {
|
|
sk_FragColor.x = float(BF);
|
|
sk_FragColor.x = float(BI);
|
|
sk_FragColor.x = float(BB);
|
|
sk_FragColor.x = FF;
|
|
sk_FragColor.x = FI;
|
|
sk_FragColor.x = FB;
|
|
sk_FragColor.x = float(IF);
|
|
sk_FragColor.x = float(II);
|
|
sk_FragColor.x = float(IB);
|
|
}
|