skia2/resources/sksl/runtime
John Stiles 116d2e0e48 Fix ES2 conformance test 'in_vs_no_in'.
SkSL treated these two functions as distinct, even though they are not:
    void func(in float x);
    void func(float x);

The `in` modifier on a function parameter is the default state, making
these two prototypes functionally identical. We now strip off an `in`
modifier on a function definition. This gives us three potential states
for each param: nothing (meaning `in`), `out`, and `inout`.

Change-Id: Id2acb53ecaca98f86a7f6a83e0b9a375f9abe2b8
Bug: skia:12525
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/458257
Commit-Queue: John Stiles <johnstiles@google.com>
Commit-Queue: Brian Osman <brianosman@google.com>
Auto-Submit: John Stiles <johnstiles@google.com>
Reviewed-by: Brian Osman <brianosman@google.com>
2021-10-11 22:27:37 +00:00
..
AllowNarrowingConversions.rts Add test for Runtime Effects and narrowing conversions. 2021-08-03 15:58:46 +00:00
ArrayIndexing.rts Remove flexible runtime effects entirely 2021-04-29 16:02:27 +00:00
ArrayNarrowingConversions.rts Add tests for array assignment with narrowing conversions. 2021-08-11 12:56:40 +00:00
Blend.rtb Add dest-color support to the Pipeline stage. 2021-06-09 22:09:21 +00:00
ConstPreservation.rts Remove usage of sqrt() as an optimization barrier in tests. 2021-05-24 17:18:54 +00:00
ConversionConstructors.rts Remove flexible runtime effects entirely 2021-04-29 16:02:27 +00:00
GlobalVariables.rts Remove flexible runtime effects entirely 2021-04-29 16:02:27 +00:00
GLSLTypeNames.rts Remove flexible runtime effects entirely 2021-04-29 16:02:27 +00:00
LargeProgram_BlocklessLoops.rts Add program-too-large test using for loops without blocks. 2021-09-15 14:19:00 +00:00
LargeProgram_FlatLoop.rts Enforce an upper bound on Runtime Effect program size. 2021-09-02 14:44:34 +00:00
LargeProgram_Functions.rts Enforce an upper bound on Runtime Effect program size. 2021-09-02 14:44:34 +00:00
LargeProgram_NestedLoops.rts Enforce an upper bound on Runtime Effect program size. 2021-09-02 14:44:34 +00:00
LargeProgram_SplitLoops.rts Enforce an upper bound on Runtime Effect program size. 2021-09-02 14:44:34 +00:00
LargeProgram_StackDepth.rts Reject programs which exceed 50 stack frames during size analysis. 2021-09-03 02:41:34 +00:00
LargeProgram_ZeroIterFor.rts Enforce an upper bound on Runtime Effect program size. 2021-09-02 14:44:34 +00:00
LoopFloat.rts Add GetConstantValue, fix const-variable ES2 loop bounds 2021-09-23 16:30:12 +00:00
LoopInt.rts Add GetConstantValue, fix const-variable ES2 loop bounds 2021-09-23 16:30:12 +00:00
PrecisionQualifiers.rts Allow precision qualifiers in function params. 2021-10-01 18:59:27 +00:00
QualifierOrder.rts Fix ES2 conformance test 'in_vs_no_in'. 2021-10-11 22:27:37 +00:00
SampleWithExplicitCoord.rts Convert internal SkSL to use .eval() 2021-09-03 15:54:54 +00:00
Switch.rts Reland "Add switch statement support to PipelineStage." 2021-09-21 13:07:50 +00:00
SwitchDefaultOnly.rts Implement switch in SkVM. 2021-09-23 19:58:55 +00:00
SwitchWithFallthrough.rts Implement switch in SkVM. 2021-09-23 19:58:55 +00:00
SwitchWithLoops.rts Implement switch in SkVM. 2021-09-23 19:58:55 +00:00
VectorIndexing.rts Remove flexible runtime effects entirely 2021-04-29 16:02:27 +00:00