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 vs_in
{
};
struct vs_out
{
};
vs_out main (vs_in i)
{
vs_out o;
return o;
}