mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-25 08:40:11 +01:00
freedreno/a4xx: use generated headers for draw initiator
No need to open-code this. Signed-off-by: Rob Clark <robclark@freedesktop.org>
This commit is contained in:
parent
2224ba5976
commit
b3fe196e21
1 changed files with 4 additions and 3 deletions
|
|
@ -41,9 +41,10 @@ static inline uint32_t DRAW4(enum pc_di_primtype prim_type,
|
|||
enum pc_di_src_sel source_select, enum a4xx_index_size index_size,
|
||||
enum pc_di_vis_cull_mode vis_cull_mode)
|
||||
{
|
||||
return (prim_type << 0) |
|
||||
(source_select << 6) |
|
||||
(index_size << 10);
|
||||
return CP_DRAW_INDX_OFFSET_0_PRIM_TYPE(prim_type) |
|
||||
CP_DRAW_INDX_OFFSET_0_SOURCE_SELECT(source_select) |
|
||||
CP_DRAW_INDX_OFFSET_0_INDEX_SIZE(index_size) |
|
||||
CP_DRAW_INDX_OFFSET_0_VIS_CULL(vis_cull_mode);
|
||||
}
|
||||
|
||||
static inline void
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue