pan/clc: Build for v15

This commit is contained in:
Lars-Ivar Hesselberg Simonsen 2026-02-17 13:17:32 +01:00
parent fb50cac9c6
commit a986de1f53
4 changed files with 6 additions and 2 deletions

View file

@ -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;
}

View file

@ -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

View file

@ -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

View file

@ -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',