aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/sksl/sksl_cpu.inc
blob: 479450bd33b158480d7b0bdd3cb8b0791ed1e1d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
STRINGIFY(
    // special-cased within the compiler - append takes various arguments depending on what kind of
    // stage is being appended
    sk_has_side_effects void append();

    float abs(float x);
    float sin(float x);
    float cos(float x);
    float tan(float x);
    float sqrt(float x);
    sk_has_side_effects void print(float x);
)