added asset loading class, zoom factor, vbo switch, shader version

This commit is contained in:
2017-03-13 01:16:20 +00:00
parent a2a221b17a
commit ee6d352fc6
25 changed files with 345 additions and 108 deletions

View File

@@ -22,6 +22,11 @@ public:
static App I;
float width;
float height;
#ifdef __ANDROID__
float zoom = 4.0;
#else
float zoom = 1.0;
#endif // __ANDROID__
void init();
void initShaders();
void initAssets();