diff options
author | Eric Anholt <[email protected]> | 2014-11-12 14:36:19 -0800 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2014-11-24 14:56:22 -0800 |
commit | ecfe9e2ad2b5f178ef09420f8d95d49937137cd9 (patch) | |
tree | c80afbfb835dfbf16081e3bcd849a235d9a45700 /src/gallium/drivers/ilo | |
parent | dc00b382b58bb3eb94ca393d32bd7eb3bb07d021 (diff) |
gallium: Drop the unused SFL/STR opcodes.
Nothing generated them.
Reviewed-by: Jose Fonseca <[email protected]>
Diffstat (limited to 'src/gallium/drivers/ilo')
-rw-r--r-- | src/gallium/drivers/ilo/shader/toy_tgsi.c | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/src/gallium/drivers/ilo/shader/toy_tgsi.c b/src/gallium/drivers/ilo/shader/toy_tgsi.c index 8cd1087744b..5989fc4640a 100644 --- a/src/gallium/drivers/ilo/shader/toy_tgsi.c +++ b/src/gallium/drivers/ilo/shader/toy_tgsi.c @@ -651,28 +651,6 @@ aos_PK2H(struct toy_compiler *tc, } static void -aos_SFL(struct toy_compiler *tc, - const struct tgsi_full_instruction *tgsi_inst, - struct toy_dst *dst, - struct toy_src *src) -{ - assert(!"SFL untested"); - - tc_MOV(tc, dst[0], tsrc_imm_f(0.0f)); -} - -static void -aos_STR(struct toy_compiler *tc, - const struct tgsi_full_instruction *tgsi_inst, - struct toy_dst *dst, - struct toy_src *src) -{ - assert(!"STR untested"); - - tc_MOV(tc, dst[0], tsrc_imm_f(1.0f)); -} - -static void aos_UP2H(struct toy_compiler *tc, const struct tgsi_full_instruction *tgsi_inst, struct toy_dst *dst, @@ -839,12 +817,10 @@ static const toy_tgsi_translate aos_translate_table[TGSI_OPCODE_LAST] = { [TGSI_OPCODE_PK4B] = aos_unsupported, [TGSI_OPCODE_PK4UB] = aos_unsupported, [TGSI_OPCODE_SEQ] = aos_set_on_cond, - [TGSI_OPCODE_SFL] = aos_SFL, [TGSI_OPCODE_SGT] = aos_set_on_cond, [TGSI_OPCODE_SIN] = aos_simple, [TGSI_OPCODE_SLE] = aos_set_on_cond, [TGSI_OPCODE_SNE] = aos_set_on_cond, - [TGSI_OPCODE_STR] = aos_STR, [TGSI_OPCODE_TEX] = aos_tex, [TGSI_OPCODE_TXD] = aos_tex, [TGSI_OPCODE_TXP] = aos_tex, @@ -1386,12 +1362,10 @@ static const toy_tgsi_translate soa_translate_table[TGSI_OPCODE_LAST] = { [TGSI_OPCODE_PK4B] = soa_unsupported, [TGSI_OPCODE_PK4UB] = soa_unsupported, [TGSI_OPCODE_SEQ] = soa_per_channel, - [TGSI_OPCODE_SFL] = soa_per_channel, [TGSI_OPCODE_SGT] = soa_per_channel, [TGSI_OPCODE_SIN] = soa_scalar_replicate, [TGSI_OPCODE_SLE] = soa_per_channel, [TGSI_OPCODE_SNE] = soa_per_channel, - [TGSI_OPCODE_STR] = soa_per_channel, [TGSI_OPCODE_TEX] = soa_passthrough, [TGSI_OPCODE_TXD] = soa_passthrough, [TGSI_OPCODE_TXP] = soa_passthrough, |