summaryrefslogtreecommitdiffstats
path: root/src/mesa/drivers/dri/i965/brw_fs_channel_expressions.cpp
diff options
context:
space:
mode:
authorMatt Turner <mattst88@gmail.com>2013-01-21 17:50:41 -0800
committerMatt Turner <mattst88@gmail.com>2013-01-25 14:10:23 -0800
commit64dbc51b497fbd962f1b594c5613dcf56066f03b (patch)
treef632d2e9c84848f8bad61db884407d95ed42951c /src/mesa/drivers/dri/i965/brw_fs_channel_expressions.cpp
parent96220111dd01259cffe8ca9a49d72ecbb2a3e808 (diff)
downloadexternal_mesa3d-64dbc51b497fbd962f1b594c5613dcf56066f03b.zip
external_mesa3d-64dbc51b497fbd962f1b594c5613dcf56066f03b.tar.gz
external_mesa3d-64dbc51b497fbd962f1b594c5613dcf56066f03b.tar.bz2
i965: Assert that the 4x8 pack/unpack operations have been lowered
Reviewed-by: Chad Versace <chad.versace@linux.intel.com> Reviewed-by: Paul Berry <stereotype441@gmail.com>
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_fs_channel_expressions.cpp')
-rw-r--r--src/mesa/drivers/dri/i965/brw_fs_channel_expressions.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_fs_channel_expressions.cpp b/src/mesa/drivers/dri/i965/brw_fs_channel_expressions.cpp
index e19da51..ea06225 100644
--- a/src/mesa/drivers/dri/i965/brw_fs_channel_expressions.cpp
+++ b/src/mesa/drivers/dri/i965/brw_fs_channel_expressions.cpp
@@ -343,10 +343,14 @@ ir_channel_expressions_visitor::visit_leave(ir_assignment *ir)
break;
case ir_unop_pack_snorm_2x16:
+ case ir_unop_pack_snorm_4x8:
case ir_unop_pack_unorm_2x16:
+ case ir_unop_pack_unorm_4x8:
case ir_unop_pack_half_2x16:
case ir_unop_unpack_snorm_2x16:
+ case ir_unop_unpack_snorm_4x8:
case ir_unop_unpack_unorm_2x16:
+ case ir_unop_unpack_unorm_4x8:
case ir_unop_unpack_half_2x16:
case ir_quadop_vector:
assert(!"should have been lowered");