Simplified shader test output

This commit is contained in:
2024-09-20 13:00:17 +02:00
parent 3f93e1a92d
commit 243d83663a
11 changed files with 48 additions and 36 deletions

View File

@@ -1,15 +1,13 @@
struct Foo;
float foo(Foo f);
struct Foo
{
float some_data;
}
};
float foo(Foo f)
{
return f.some_data * 2.0f;
return (f.some_data * 2.0f);
}
void vs_main()