overte-lubosz/libraries/shaders/ShaderEnums.cpp.in
2018-10-23 10:40:12 -07:00

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