Asset Progress

This commit is contained in:
2023-11-25 15:51:20 -06:00
parent c2fb75df97
commit 89fe77c07e
25 changed files with 787 additions and 119 deletions

View File

@ -14,7 +14,7 @@
namespace Dawn {
typedef GLuint shadertexturebinding_t;
enum ShaderOpenGLVariant {
enum class ShaderOpenGLVariant {
GLSL_330_CORE
};
@ -60,7 +60,7 @@ namespace Dawn {
*/
void init() override {
// Determine which kind of OpenGL shader to use.
variant = GLSL_330_CORE;
variant = ShaderOpenGLVariant::GLSL_330_CORE;
// Now get the stages
T dummy;