2016-09-06 13:15:29 +00:00
|
|
|
#ifndef _DEBUG
|
|
|
|
#pragma comment( linker, "/subsystem:\"windows\" /entry:\"mainCRTStartup\"" )
|
|
|
|
#endif // DEBUG
|
|
|
|
|
|
|
|
#include "OpenGLController.h"
|
|
|
|
|
|
|
|
int main(int argc, char** argv)
|
|
|
|
{
|
2016-11-01 13:16:18 +00:00
|
|
|
OpenGLController* scene = NULL;
|
|
|
|
|
|
|
|
if (argc == 3)
|
|
|
|
{
|
|
|
|
int major = atoi(argv[1]);
|
|
|
|
int minor = atoi(argv[2]);
|
|
|
|
scene = OpenGLController::getInstance(major, minor);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
scene = OpenGLController::getInstance();
|
|
|
|
|
2016-12-02 12:00:38 +00:00
|
|
|
#ifdef _DEBUG
|
2016-12-03 12:39:57 +00:00
|
|
|
scene->loadMsh("..\\Release\\Msh\\triClothMan.msh");
|
2016-12-02 12:00:38 +00:00
|
|
|
#endif // DEBUG
|
2016-09-08 15:41:26 +00:00
|
|
|
|
2016-09-07 14:07:56 +00:00
|
|
|
do {
|
2016-09-08 09:36:57 +00:00
|
|
|
scene->updateScene();
|
|
|
|
} while (!glfwWindowShouldClose(scene->getWindow()));
|
|
|
|
|
|
|
|
delete scene;
|
2016-09-06 13:15:29 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|