diff options
author | Eric Anholt <[email protected]> | 2014-08-05 13:33:50 -0700 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2014-08-08 18:59:47 -0700 |
commit | bf542cd37286decbd9fc0c939007b82176e16a81 (patch) | |
tree | f717868260caf74de1d282d070d41b99b9ba110e /src/gallium/drivers/vc4/vc4_program.c | |
parent | 399285403a5c1c730877b9d196a1f47670f4be46 (diff) |
vc4: Add support for the TGSI TRUNC opcode.
v2: Rebase on helpers.
Diffstat (limited to 'src/gallium/drivers/vc4/vc4_program.c')
-rw-r--r-- | src/gallium/drivers/vc4/vc4_program.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/gallium/drivers/vc4/vc4_program.c b/src/gallium/drivers/vc4/vc4_program.c index 3f52588ada8..307eda02cbe 100644 --- a/src/gallium/drivers/vc4/vc4_program.c +++ b/src/gallium/drivers/vc4/vc4_program.c @@ -293,6 +293,16 @@ tgsi_to_qir_pow(struct tgsi_to_qir *trans, } static struct qreg +tgsi_to_qir_trunc(struct tgsi_to_qir *trans, + struct tgsi_full_instruction *tgsi_inst, + enum qop op, struct qreg *src, int i) +{ + struct qcompile *c = trans->c; + return qir_ITOF(c, qir_FTOI(c, src[0 * 4 + i])); +} + + +static struct qreg tgsi_to_qir_dp(struct tgsi_to_qir *trans, struct tgsi_full_instruction *tgsi_inst, int num, struct qreg *src, int i) @@ -413,6 +423,7 @@ emit_tgsi_instruction(struct tgsi_to_qir *trans, [TGSI_OPCODE_LIT] = { 0, tgsi_to_qir_lit }, [TGSI_OPCODE_LRP] = { 0, tgsi_to_qir_lrp }, [TGSI_OPCODE_POW] = { 0, tgsi_to_qir_pow }, + [TGSI_OPCODE_TRUNC] = { 0, tgsi_to_qir_trunc }, }; static int asdf = 0; uint32_t tgsi_op = tgsi_inst->Instruction.Opcode; |