diff options
author | Jonathan Marek <[email protected]> | 2019-09-06 12:59:15 -0400 |
---|---|---|
committer | Jonathan Marek <[email protected]> | 2019-10-30 18:04:17 +0000 |
commit | fa3baeab76dadeb61b7edfc849b6c5d379cc358a (patch) | |
tree | f241eeb852c3055984da1250c01ea1625dfe6293 /src/gallium/drivers/freedreno/a2xx/instr-a2xx.h | |
parent | 03a132912f6343bda834973e40eb35df33f75d8e (diff) |
freedreno/a2xx: add missing vertex formats (SSCALE/USCALE/FIXED)
Mostly for vertex formats, but they are supported as texture formats too
(untested however).
Signed-off-by: Jonathan Marek <[email protected]>
Reviewed-by: Rob Clark <[email protected]>
Diffstat (limited to 'src/gallium/drivers/freedreno/a2xx/instr-a2xx.h')
-rw-r--r-- | src/gallium/drivers/freedreno/a2xx/instr-a2xx.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/drivers/freedreno/a2xx/instr-a2xx.h b/src/gallium/drivers/freedreno/a2xx/instr-a2xx.h index 2591062ee3c..0078b24b509 100644 --- a/src/gallium/drivers/freedreno/a2xx/instr-a2xx.h +++ b/src/gallium/drivers/freedreno/a2xx/instr-a2xx.h @@ -372,8 +372,8 @@ typedef struct PACKED { uint8_t signed_rf_mode_all : 1; uint8_t reserved1 : 1; instr_surf_fmt_t format : 6; - uint8_t reserved2 : 1; - uint8_t exp_adjust_all : 7; + uint8_t reserved2 : 2; + uint8_t exp_adjust_all : 6; uint8_t reserved3 : 1; uint8_t pred_select : 1; /* dword2: */ |