From: Ian Romanick Date: Wed, 31 Mar 2010 20:14:37 +0000 (-0700) Subject: Add 'in' to some parameters of the function X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=a705d65ccd1e204cc0b667df2678cc6921cbd9f5;p=mesa.git Add 'in' to some parameters of the function This goes along with the qualifier-?? tests. --- 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;