diff options
author | Eric Anholt <[email protected]> | 2014-12-15 10:45:58 -0800 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2014-12-15 14:28:23 -0800 |
commit | 8e678de761e755564ade2794dbf68280a4972b66 (patch) | |
tree | 9c66e2ff7fa33d092a46584da8646e7e1cae5aaa /src/gallium/drivers/vc4/vc4_qir.c | |
parent | ade7704685df3054c04203232334e1475d87ac46 (diff) |
vc4: Rename UNPACK_8* to UNPACK_8*_F.
There is an equivalent unpack function without conversion to float if you
use an integer operation instead.
Diffstat (limited to 'src/gallium/drivers/vc4/vc4_qir.c')
-rw-r--r-- | src/gallium/drivers/vc4/vc4_qir.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gallium/drivers/vc4/vc4_qir.c b/src/gallium/drivers/vc4/vc4_qir.c index c43b9b60597..e83c03654b0 100644 --- a/src/gallium/drivers/vc4/vc4_qir.c +++ b/src/gallium/drivers/vc4/vc4_qir.c @@ -99,10 +99,10 @@ static const struct qir_op_info qir_op_info[] = { [QOP_R4_UNPACK_B] = { "r4_unpack_b", 1, 1 }, [QOP_R4_UNPACK_C] = { "r4_unpack_c", 1, 1 }, [QOP_R4_UNPACK_D] = { "r4_unpack_d", 1, 1 }, - [QOP_UNPACK_8A] = { "unpack_8a", 1, 1 }, - [QOP_UNPACK_8B] = { "unpack_8b", 1, 1 }, - [QOP_UNPACK_8C] = { "unpack_8c", 1, 1 }, - [QOP_UNPACK_8D] = { "unpack_8d", 1, 1 }, + [QOP_UNPACK_8A_F] = { "unpack_8a_f", 1, 1 }, + [QOP_UNPACK_8B_F] = { "unpack_8b_f", 1, 1 }, + [QOP_UNPACK_8C_F] = { "unpack_8c_f", 1, 1 }, + [QOP_UNPACK_8D_F] = { "unpack_8d_f", 1, 1 }, }; static const char * |