diff options
author | Eric Anholt <[email protected]> | 2014-12-15 12:30:26 -0800 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2014-12-15 14:33:01 -0800 |
commit | 48a2154520351a22fc860efcdaa4329a51d29c8d (patch) | |
tree | cccb279fea71ccd85c0dda762fe8898408a9f00b /src/gallium/drivers/vc4/vc4_qir.c | |
parent | 9ca32d6c19489653222ff1084856fa5584932b66 (diff) |
vc4: Add support for 16-bit signed/unsigned norm/scaled vertex attrs.
Diffstat (limited to 'src/gallium/drivers/vc4/vc4_qir.c')
-rw-r--r-- | src/gallium/drivers/vc4/vc4_qir.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/gallium/drivers/vc4/vc4_qir.c b/src/gallium/drivers/vc4/vc4_qir.c index 8cd571d5b77..49b79014c09 100644 --- a/src/gallium/drivers/vc4/vc4_qir.c +++ b/src/gallium/drivers/vc4/vc4_qir.c @@ -103,10 +103,14 @@ static const struct qir_op_info qir_op_info[] = { [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 }, + [QOP_UNPACK_16A_F] = { "unpack_16a_f", 1, 1 }, + [QOP_UNPACK_16B_F] = { "unpack_16b_f", 1, 1 }, [QOP_UNPACK_8A_I] = { "unpack_8a_i", 1, 1 }, [QOP_UNPACK_8B_I] = { "unpack_8b_i", 1, 1 }, [QOP_UNPACK_8C_I] = { "unpack_8c_i", 1, 1 }, [QOP_UNPACK_8D_I] = { "unpack_8d_i", 1, 1 }, + [QOP_UNPACK_16A_I] = { "unpack_16a_i", 1, 1 }, + [QOP_UNPACK_16B_I] = { "unpack_16b_i", 1, 1 }, }; static const char * |