mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-08 19:20:12 +01:00
swr/rast: Add ConcatLists()
for concatenating lists Reviewed-by: Bruce Cherniak <bruce.cherniak@intel.com>
This commit is contained in:
parent
dcaca3c7b3
commit
db25fcfcde
1 changed files with 6 additions and 0 deletions
|
|
@ -31,6 +31,12 @@ import shutil
|
|||
from mako.template import Template
|
||||
from mako.exceptions import RichTraceback
|
||||
|
||||
#==============================================================================
|
||||
def ConcatLists(list_of_lists):
|
||||
output = []
|
||||
for l in list_of_lists: output += l
|
||||
return output
|
||||
|
||||
#==============================================================================
|
||||
def MakeTmpDir(suffix=''):
|
||||
'''
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue