TDME2 1.9.121
ShaderModel.cpp
Go to the documentation of this file.
2
3#include <string>
4
5#include <tdme/tdme.h>
7
8using std::string;
9
12
13ShaderModel::ShaderModel(const string& name, int ordinal): Enum(name, ordinal)
14{
15}
16
19
21{
22 if (SPECULAR->getName() == a0) return SPECULAR;
23 if (PBR->getName() == a0) return PBR;
24 // TODO: throw exception here maybe
25 return nullptr;
26}
static STATIC_DLL_IMPEXT ShaderModel * PBR
Definition: ShaderModel.h:24
static STATIC_DLL_IMPEXT ShaderModel * SPECULAR
Definition: ShaderModel.h:23
static ShaderModel * valueOf(const string &a0)
Definition: ShaderModel.cpp:20
Enum base class.
Definition: Enum.h:14
const string & getName() const
Definition: Enum.h:30