diff options
author | Chad Versace <[email protected]> | 2012-08-01 21:23:47 -0700 |
---|---|---|
committer | Chad Versace <[email protected]> | 2012-08-07 09:30:33 -0700 |
commit | a4bf68ca50da0ce291a464aec9b03a469ab2561a (patch) | |
tree | 48228cbcc200abb65e1aa8501142ae76183d802b /src/mesa/drivers/dri/radeon | |
parent | b2d428cb8d20e003b65769c7757a137406c671e6 (diff) |
dri: Simplify use of driConcatConfigs
If either argument to driConcatConfigs(a, b) is null or the empty list,
then simply return the other argument as the resultant list.
All callers were accomplishing that same behavior anyway. And each caller
accopmplished it with the same pattern. So this patch moves that external
pattern into the function.
Reviewed-by: <[email protected]>
Signed-off-by: Chad Versace <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/radeon')
-rw-r--r-- | src/mesa/drivers/dri/radeon/radeon_screen.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/mesa/drivers/dri/radeon/radeon_screen.c b/src/mesa/drivers/dri/radeon/radeon_screen.c index 85cfe17ad76..27b57c5a3ea 100644 --- a/src/mesa/drivers/dri/radeon/radeon_screen.c +++ b/src/mesa/drivers/dri/radeon/radeon_screen.c @@ -760,10 +760,7 @@ __DRIconfig **radeonInitScreen2(__DRIscreen *psp) msaa_samples_array, ARRAY_SIZE(msaa_samples_array), GL_TRUE); - if (configs == NULL) - configs = new_configs; - else - configs = driConcatConfigs(configs, new_configs); + configs = driConcatConfigs(configs, new_configs); } if (configs == NULL) { |