mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 15:07:45 +00:00
LibGLSL: Add tests for GLSL parser
This commit is contained in:
parent
29972876e4
commit
d160ff2f8d
24 changed files with 368 additions and 0 deletions
5
Userland/Libraries/LibGLSL/Tests/parser/expression.glsl
Normal file
5
Userland/Libraries/LibGLSL/Tests/parser/expression.glsl
Normal file
|
@ -0,0 +1,5 @@
|
|||
void foo()
|
||||
{
|
||||
int a = 1 + 2 * 3 + (4 - 2) / 2 + max(7, 8) - bar.xy + abc[13];
|
||||
}
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue