HLSL: Add all int/float/bool/uint matrix types, void for functions, and a few others.
This commit is contained in:
parent
5022d681d1
commit
71351de879
8 changed files with 307 additions and 22 deletions
8
Test/hlsl.void.frag
Normal file
8
Test/hlsl.void.frag
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
void foo1() {}
|
||||
void foo2(void) {}
|
||||
|
||||
float4 PixelShaderFunction(float4 input) : COLOR0
|
||||
{
|
||||
foo1();
|
||||
foo2();
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue