mirror of
https://github.com/lubosz/overte.git
synced 2025-04-06 00:02:22 +02:00
19 lines
No EOL
380 B
C++
19 lines
No EOL
380 B
C++
#include "ShaderEnums.h"
|
|
#include <vector>
|
|
|
|
namespace shader {
|
|
const std::vector<uint32_t>& allPrograms() {
|
|
static const std::vector<uint32_t> ALL_PROGRAMS{{
|
|
@SHADER_PROGRAMS_ARRAY@
|
|
}};
|
|
return ALL_PROGRAMS;
|
|
}
|
|
|
|
const std::vector<uint32_t>& allShaders() {
|
|
static const std::vector<uint32_t> ALL_SHADERS{{
|
|
@SHADER_SHADERS_ARRAY@
|
|
}};
|
|
return ALL_SHADERS;
|
|
}
|
|
|
|
} |