cfcc11bd98
We enforce no-recursion in all programs now, not just Runtime Effects. Change-Id: I3737329e4526fa1b7fdbb47ccb959f78f507f665 Reviewed-on: https://skia-review.googlesource.com/c/skia/+/535119 Auto-Submit: John Stiles <johnstiles@google.com> Commit-Queue: John Stiles <johnstiles@google.com> Reviewed-by: Brian Osman <brianosman@google.com>
9 lines
306 B
GLSL
9 lines
306 B
GLSL
### Compilation failed:
|
|
|
|
error: 4: potential recursion (function call cycle) not allowed:
|
|
int fibonacci(int n)
|
|
int fibonacci(int n)
|
|
int fibonacci(int n) { return n <= 1 ? n : fibonacci(n - 1) + fibonacci(n - 2); }
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
1 error
|