diff options
author | Maxence Le Dore <[email protected]> | 2012-12-24 00:57:37 +0100 |
---|---|---|
committer | Chris Forbes <[email protected]> | 2013-10-03 07:55:54 +1300 |
commit | 18002d9eda56801794cf471b30cfb9cd79fd167b (patch) | |
tree | 996f09ad1d51f934b512f59bb9c0a98ea0b73ed1 /src/mesa/program | |
parent | d3575622b7897c88c62e4f57341c196eb913c960 (diff) |
glsl: add texture gather changes
V2 [Chris Forbes]:
- Add new pattern, fixup parameter reading.
V3: Rebase onto new builtins machinery
Reviewed-by: Kenneth Graunke <[email protected]>
Reviewed-by: Ian Romanick <[email protected]>
Diffstat (limited to 'src/mesa/program')
-rw-r--r-- | src/mesa/program/ir_to_mesa.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mesa/program/ir_to_mesa.cpp b/src/mesa/program/ir_to_mesa.cpp index b08107b1c90..f180a7f6486 100644 --- a/src/mesa/program/ir_to_mesa.cpp +++ b/src/mesa/program/ir_to_mesa.cpp @@ -2066,6 +2066,9 @@ ir_to_mesa_visitor::visit(ir_texture *ir) case ir_lod: assert(!"Unexpected ir_lod opcode"); break; + case ir_tg4: + assert(!"Unexpected ir_tg4 opcode"); + break; } const glsl_type *sampler_type = ir->sampler->type; |