HLSL: fix crash on empty struct return from entry point

This commit is contained in:
steve-lunarg
2017-03-24 08:56:37 -06:00
parent 19ea56899c
commit d8e34c5119
6 changed files with 231 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
struct ps_in
{
};
struct ps_out
{
};
ps_out main (ps_in i)
{
ps_out o;
return o;
}