skia2/resources/sksl/errors/BooleanArithmetic.sksl
John Stiles bfc9be0f77 Migrate SkSL test inputs to the resources/ directory.
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>
2021-01-22 18:57:29 +00:00

27 lines
1.5 KiB
Plaintext

bool2 add_boolean() { return false + true; }
bool2 sub_boolean() { return false - true; }
bool2 mul_boolean() { return false * true; }
bool2 div_boolean() { return false / true; }
bool2 mod_boolean() { return false % true; }
bool2 shl_boolean() { return false << true; }
bool2 shr_boolean() { return false >> true; }
bool2 neg_boolean() { return -false; }
bool2 bitnot_boolean() { return ~false; }
bool2 bitand_boolean() { return false & true; }
bool2 bitor_boolean() { return false | true; }
bool2 bitxor_boolean() { return false ^ true; }
bool2 add_boolean_vec() { return bool2(false, false) + bool2(true, true); }
bool2 sub_boolean_vec() { return bool2(false, false) - bool2(true, true); }
bool2 mul_boolean_vec() { return bool2(false, false) * bool2(true, true); }
bool2 div_boolean_vec() { return bool2(false, false) / bool2(true, true); }
bool2 mod_boolean_vec() { return bool2(false, false) % bool2(true, true); }
bool2 shl_boolean_vec() { return bool2(false, false) << bool2(true, true); }
bool2 shr_boolean_vec() { return bool2(false, false) >> bool2(true, true); }
bool2 not_boolean_vec() { return !bool2(false, false); }
bool2 neg_boolean_vec() { return -bool2(false, false); }
bool2 bitnot_boolean_vec() { return ~bool2(false, false); }
bool2 bitand_boolean_vec() { return bool2(false, false) & bool2(true, true); }
bool2 bitor_boolean_vec() { return bool2(false, false) | bool2(true, true); }
bool2 bitxor_boolean_vec() { return bool2(false, false) ^ bool2(true, true); }