From: Brian Paul Date: Tue, 29 Jul 2008 23:49:38 +0000 (-0600) Subject: mesa: glsl: remove old assertion (fixes glsl/bitmap.c) X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=1bdb1345703584d9247c84f8efb9056db22de682;p=mesa.git mesa: glsl: remove old assertion (fixes glsl/bitmap.c) --- diff --git a/src/mesa/shader/slang/slang_emit.c b/src/mesa/shader/slang/slang_emit.c index f1af6902ea1..9991a7caeee 100644 --- a/src/mesa/shader/slang/slang_emit.c +++ b/src/mesa/shader/slang/slang_emit.c @@ -1021,7 +1021,7 @@ emit_tex(slang_emit_info *emitInfo, slang_ir_node *n) storage_to_dst_reg(&inst->DstReg, n->Store, n->Writemask); /* Child[1] is the coord */ - assert(n->Children[1]->Store->File != PROGRAM_UNDEFINED); + /*assert(n->Children[1]->Store->File != PROGRAM_UNDEFINED);*/ assert(n->Children[1]->Store->Index >= 0); storage_to_src_reg(&inst->SrcReg[0], n->Children[1]->Store);