Add 'in' to some parameters of the function

This goes along with the qualifier-?? tests.
This commit is contained in:
Ian Romanick 2010-03-31 13:14:37 -07:00
parent d8a2133887
commit a705d65ccd
1 changed files with 1 additions and 1 deletions

View File

@ -1,6 +1,6 @@
/* PASS */
vec4 foo(float x, float y, float z, float w)
vec4 foo(in float x, in float y, float z, float w)
{
vec4 v;
v.x = x;