Пример #1
0
int APIENTRY WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nShowCmd)
{
	RenderWindow app;
	if(!app.Create(FALSE,"Fractal Graphics - Cantor Set"))
		return EXIT_FAILURE;
	return app.Run();
}
Пример #2
0
int APIENTRY WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nShowCmd)
{
	RenderWindow app;
	if(!app.Create(FALSE, "EDin's OpenGL - Texture2D"))
		return EXIT_FAILURE;
	return app.Run();
}
Пример #3
0
int APIENTRY WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nShowCmd)
{
	RenderWindow app;
	if(!app.Create(FALSE,"Recursive Circle"))
		return EXIT_FAILURE;
	return app.Run();
}