mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 00:58:05 +02:00
radeonsi: Drop extraneous semicolons from pm4 state macro definitions.
Could cause build failures if trying to use the macros in certain constructs. Signed-off-by: Michel Dänzer <michel.daenzer@amd.com> Reviewed-by: Christian König <christian.koenig@amd.com> Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
parent
a3d9d7ec79
commit
84fdda280f
1 changed files with 3 additions and 3 deletions
|
|
@ -104,7 +104,7 @@ union si_state {
|
|||
#define si_pm4_bind_state(rctx, member, value) \
|
||||
do { \
|
||||
(rctx)->queued.named.member = (value); \
|
||||
} while(0);
|
||||
} while(0)
|
||||
|
||||
#define si_pm4_delete_state(rctx, member, value) \
|
||||
do { \
|
||||
|
|
@ -113,7 +113,7 @@ union si_state {
|
|||
} \
|
||||
si_pm4_free_state(rctx, (struct si_pm4_state *)(value), \
|
||||
si_pm4_block_idx(member)); \
|
||||
} while(0);
|
||||
} while(0)
|
||||
|
||||
#define si_pm4_set_state(rctx, member, value) \
|
||||
do { \
|
||||
|
|
@ -123,7 +123,7 @@ union si_state {
|
|||
si_pm4_block_idx(member)); \
|
||||
(rctx)->queued.named.member = (value); \
|
||||
} \
|
||||
} while(0);
|
||||
} while(0)
|
||||
|
||||
/* si_state.c */
|
||||
bool si_is_format_supported(struct pipe_screen *screen,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue