mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 09:08:10 +02:00
pan/clc: Build for v15
This commit is contained in:
parent
fb50cac9c6
commit
a986de1f53
4 changed files with 6 additions and 2 deletions
|
|
@ -276,7 +276,7 @@ main(int argc, const char **argv)
|
|||
|
||||
unsigned target_arch = atoi(target_arch_str);
|
||||
|
||||
if (target_arch < 4 || target_arch > 14) {
|
||||
if (target_arch < 4 || target_arch > 15) {
|
||||
fprintf(stderr, "Unsupported target arch %d\n", target_arch);
|
||||
return 1;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -30,6 +30,8 @@
|
|||
#include "libpan_v13.h"
|
||||
#elif (PAN_ARCH == 14)
|
||||
#include "libpan_v14.h"
|
||||
#elif (PAN_ARCH == 15)
|
||||
#include "libpan_v15.h"
|
||||
#else
|
||||
#error "Unsupported architecture for libpan"
|
||||
#endif
|
||||
|
|
|
|||
|
|
@ -28,6 +28,8 @@
|
|||
#include "libpan_shaders_v13.h"
|
||||
#elif (PAN_ARCH == 14)
|
||||
#include "libpan_shaders_v14.h"
|
||||
#elif (PAN_ARCH == 15)
|
||||
#include "libpan_shaders_v15.h"
|
||||
#else
|
||||
#error "Unsupported architecture for libpan"
|
||||
#endif
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@ libpan_shader_files = files(
|
|||
|
||||
idep_libpan_per_arch = {}
|
||||
|
||||
foreach ver : ['4', '5', '6', '7', '9', '10', '12', '13', '14']
|
||||
foreach ver : ['4', '5', '6', '7', '9', '10', '12', '13', '14', '15']
|
||||
libpan_spv = custom_target(
|
||||
input : libpan_shader_files,
|
||||
output : 'libpan_v' + ver + '.spv',
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue