diff options
author | Brian Paul <[email protected]> | 2008-07-25 15:33:02 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2008-07-25 15:33:02 -0600 |
commit | 40acf8cce24afe80388639b804f9ae8c0b779d81 (patch) | |
tree | a232e33669d4a4ed26af5d67d3c143d7dec26df2 /src/mesa/shader/slang/slang_emit.c | |
parent | 4b3fb99b502a803bec852a35e6d50c3ff49975e3 (diff) |
mesa: glsl: assorted fixes for resolving polymorphic functions
Plus,
- fix some issues in casting function arguments to format param types.
- fix some vec/mat constructor bugs
- find/report more syntax/semantic errors
Diffstat (limited to 'src/mesa/shader/slang/slang_emit.c')
-rw-r--r-- | src/mesa/shader/slang/slang_emit.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/mesa/shader/slang/slang_emit.c b/src/mesa/shader/slang/slang_emit.c index 9bff055ad56..f1af6902ea1 100644 --- a/src/mesa/shader/slang/slang_emit.c +++ b/src/mesa/shader/slang/slang_emit.c @@ -256,6 +256,12 @@ storage_to_src_reg(struct prog_src_register *src, const slang_ir_storage *st) } assert(st->File >= 0); +#if 1 /* XXX temporary */ + if (st->File == PROGRAM_UNDEFINED) { + slang_ir_storage *st0 = (slang_ir_storage *) st; + st0->File = PROGRAM_TEMPORARY; + } +#endif assert(st->File < PROGRAM_UNDEFINED); src->File = st->File; |