Gem Illuminator
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Macros
shaderprograms.h
Go to the documentation of this file.
1 #ifndef SHADERPROGRAMS
2 #define SHADERPROGRAMS
3 
4 inline uint qHash(ShaderPrograms key, uint seed)
5 {
6  return qHash(static_cast<uint>(key), seed);
7 }
8 
14 enum class ShaderPrograms {
15  GemProgram,
21 };
22 
23 #endif // SHADERPROGRAMS
24 
uint qHash(ShaderPrograms key, uint seed)
Definition: shaderprograms.h:4
ShaderPrograms
The ShaderPrograms enum Manage ShaderPrograms with the help of this enum class. If it is neccessary ...
Definition: shaderprograms.h:14