glsl: yet another swizzled expression fix
authorBrian Paul <brianp@vmware.com>
Tue, 24 Feb 2009 00:43:43 +0000 (17:43 -0700)
committerBrian Paul <brianp@vmware.com>
Tue, 24 Feb 2009 00:43:43 +0000 (17:43 -0700)
This fixes swizzled conditional expressions such "(b ? p : q).x"

src/mesa/shader/slang/slang_emit.c

index adb3bde..6a47585 100644 (file)
@@ -1857,8 +1857,11 @@ emit_swizzle(slang_emit_info *emitInfo, slang_ir_node *n)
 
    inst = emit(emitInfo, n->Children[0]);
 
-   assert(n->Children[0]->Store == n->Store->Parent);
-   assert(n->Store->Parent);
+   if (!n->Store->Parent) {
+      /* this covers a case such as "(b ? p : q).x" */
+      n->Store->Parent = n->Children[0]->Store;
+      assert(n->Store->Parent);
+   }
 
    {
       const GLuint swizzle = n->Store->Swizzle;