aboutsummaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/vc4/vc4_qpu_defines.h
diff options
context:
space:
mode:
authorEric Anholt <[email protected]>2015-08-04 21:23:53 -0700
committerEric Anholt <[email protected]>2015-10-24 17:55:55 -0700
commita2eba3362f1c120e5e70b56568d44470cb75fdc8 (patch)
treea44ae1508ce0a975fad4d889b1fe40eeef10b901 /src/gallium/drivers/vc4/vc4_qpu_defines.h
parenta238ad372d0914b8a95c3521c52639a4ddee7bae (diff)
vc4: Fix names of the 16-bit unpacks
They're only f16-to-f32 on a float operation, otherwise they're i16-to-i32.
Diffstat (limited to 'src/gallium/drivers/vc4/vc4_qpu_defines.h')
-rw-r--r--src/gallium/drivers/vc4/vc4_qpu_defines.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/drivers/vc4/vc4_qpu_defines.h b/src/gallium/drivers/vc4/vc4_qpu_defines.h
index eb3dfb33827..626dc3be6be 100644
--- a/src/gallium/drivers/vc4/vc4_qpu_defines.h
+++ b/src/gallium/drivers/vc4/vc4_qpu_defines.h
@@ -200,8 +200,8 @@ enum qpu_pack_a {
enum qpu_unpack {
QPU_UNPACK_NOP,
- QPU_UNPACK_16A_TO_F32,
- QPU_UNPACK_16B_TO_F32,
+ QPU_UNPACK_16A,
+ QPU_UNPACK_16B,
QPU_UNPACK_8D_REP,
QPU_UNPACK_8A,
QPU_UNPACK_8B,