mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-25 13:00:09 +01:00
pan/lib: Build for v13
Signed-off-by: Mary Guillemard <mary.guillemard@collabora.com> Reviewed-by: Boris Brezillon <boris.brezillon@collabora.com> Reviewed-by: Lars-Ivar Hesselberg Simonsen <lars-ivar.simonsen@arm.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/34032>
This commit is contained in:
parent
9814f2d553
commit
2210eb873a
2 changed files with 4 additions and 2 deletions
|
|
@ -5,7 +5,7 @@
|
|||
subdir('genxml')
|
||||
subdir('kmod')
|
||||
|
||||
pixel_format_versions = ['5', '6', '7', '9', '10', '12']
|
||||
pixel_format_versions = ['5', '6', '7', '9', '10', '12', '13']
|
||||
libpanfrost_pixel_format = []
|
||||
|
||||
deps_for_libpanfrost = [dep_libdrm, idep_pan_packers, idep_mesautil]
|
||||
|
|
@ -23,7 +23,7 @@ endforeach
|
|||
|
||||
libpanfrost_per_arch = []
|
||||
|
||||
foreach ver : ['4', '5', '6', '7', '9', '10', '12']
|
||||
foreach ver : ['4', '5', '6', '7', '9', '10', '12', '13']
|
||||
libpanfrost_per_arch += static_library(
|
||||
'pan-arch-v' + ver,
|
||||
[
|
||||
|
|
|
|||
|
|
@ -84,6 +84,7 @@ panfrost_blendable_format_table(unsigned arch)
|
|||
FMT_TABLE(9);
|
||||
FMT_TABLE(10);
|
||||
FMT_TABLE(12);
|
||||
FMT_TABLE(13);
|
||||
#undef FMT_TABLE
|
||||
default:
|
||||
assert(!"Unsupported architecture");
|
||||
|
|
@ -112,6 +113,7 @@ panfrost_format_table(unsigned arch)
|
|||
FMT_TABLE(9);
|
||||
FMT_TABLE(10);
|
||||
FMT_TABLE(12);
|
||||
FMT_TABLE(13);
|
||||
#undef FMT_TABLE
|
||||
default:
|
||||
assert(!"Unsupported architecture");
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue