mesa: additional vec4 constructor
authorBrian Paul <brian.paul@tungstengraphics.com>
Thu, 3 Jul 2008 19:24:19 +0000 (13:24 -0600)
committerBrian Paul <brian.paul@tungstengraphics.com>
Thu, 3 Jul 2008 19:24:19 +0000 (13:24 -0600)
src/mesa/shader/slang/library/slang_core.gc

index 78e3ea9fdacfa2813854f2c7c5711a04b483c9dd..15a0792f437876e5e47162545cbd8a00732ce1b5 100644 (file)
@@ -249,6 +249,14 @@ vec4 __constructor(const vec3 v3, const float f)
    __retVal.w = f;
 }
 
+vec4 __constructor(const vec2 v2, const float f1, const float f2)
+{
+   // XXX this constructor shouldn't be needed anymore
+   __retVal.xy = v2;
+   __retVal.z = f1;
+   __retVal.w = f2;
+}
+
 
 //// ivec2 constructors