Added shader param buffer support

This commit is contained in:
2023-05-24 23:07:09 -07:00
parent b65f52878a
commit e38d6b7948
9 changed files with 213 additions and 10 deletions

View File

@@ -10,5 +10,6 @@
using namespace Dawn;
Scene * Dawn::dawnGameGetInitialScene(DawnGame *game) {
return new Scene1Prologue(game);
// return new Scene1Prologue(game);
return new HelloWorldScene(game);
}