fix w component of glsl vec4 asin

This commit is contained in:
Roland Scheidegger 2008-01-31 01:35:52 +01:00
parent d64ea43b76
commit f6de56b88a

View file

@ -343,6 +343,7 @@ vec4 asin(const vec4 v)
__retVal.x = asin(v.x);
__retVal.y = asin(v.y);
__retVal.z = asin(v.z);
__retVal.w = asin(v.w);
}
float acos(const float x)