diff options
author | Ian Romanick <[email protected]> | 2010-03-31 13:14:37 -0700 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2010-03-31 13:14:37 -0700 |
commit | a705d65ccd1e204cc0b667df2678cc6921cbd9f5 (patch) | |
tree | 4fcece1ecb9f8bab2b0dd138b8adcc918e49adda /tests | |
parent | d8a2133887576daf7bc87fe05efdf31e7b5dca28 (diff) |
Add 'in' to some parameters of the function
This goes along with the qualifier-?? tests.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/function-03.glsl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/function-03.glsl b/tests/function-03.glsl index 6f6562ea858..b0da42f8e96 100644 --- a/tests/function-03.glsl +++ b/tests/function-03.glsl @@ -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; |