diff options
author | Brian Paul <[email protected]> | 2009-01-16 09:30:37 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2009-01-16 09:30:58 -0700 |
commit | e442fe5ba53acf16c78339f19921d70dba3928f6 (patch) | |
tree | bd4de2c79fc08fb06d5452bbb2a5ee2284a93d98 /src/mesa | |
parent | 66a4f5cf9a74f906f802eeeae56de79fc640a2c9 (diff) |
glsl: fix broken sampler assignments
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/shader/slang/slang_emit.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mesa/shader/slang/slang_emit.c b/src/mesa/shader/slang/slang_emit.c index 6b744d72c82..ea446fa5d49 100644 --- a/src/mesa/shader/slang/slang_emit.c +++ b/src/mesa/shader/slang/slang_emit.c @@ -1349,9 +1349,10 @@ emit_copy(slang_emit_info *emitInfo, slang_ir_node *n) if (n->Store->File == PROGRAM_SAMPLER) { /* no code generated for sampler assignments, - * just copy the sampler index at compile time. + * just copy the sampler index/target at compile time. */ n->Store->Index = n->Children[1]->Store->Index; + n->Store->TexTarget = n->Children[1]->Store->TexTarget; return NULL; } |