summary |
shortlog |
log |
commit | commitdiff |
tree
raw |
patch |
inline | side by side (from parent 1:
6c7f094)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@57295
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
// global options which can be set through command-line options
// global options which can be set through command-line options
-GLboolean g_speed_test = GL_FALSE;
GLboolean g_use_vertex_arrays = GL_FALSE;
GLboolean g_doubleBuffer = GL_TRUE;
GLboolean g_smooth = GL_TRUE;
GLboolean g_use_vertex_arrays = GL_FALSE;
GLboolean g_doubleBuffer = GL_TRUE;
GLboolean g_smooth = GL_TRUE;
void MyApp::OnInitCmdLine(wxCmdLineParser& parser)
{
void MyApp::OnInitCmdLine(wxCmdLineParser& parser)
{
- parser.AddSwitch("", "-sb");
- parser.AddSwitch("", "-db");
- parser.AddSwitch("", "-speed");
- parser.AddSwitch("", "-va");
+ parser.AddSwitch("", "sb", "Do not use double buffering");
+ parser.AddSwitch("", "db", "Use double buffering");
+ parser.AddSwitch("", "va", "Use vertex arrays");
wxApp::OnInitCmdLine(parser);
}
bool MyApp::OnCmdLineParsed(wxCmdLineParser& parser)
{
wxApp::OnInitCmdLine(parser);
}
bool MyApp::OnCmdLineParsed(wxCmdLineParser& parser)
{
- if (parser.Found("-sb"))
+ if (parser.Found("sb"))
g_doubleBuffer = GL_FALSE;
g_doubleBuffer = GL_FALSE;
- else if (parser.Found("-db"))
+ else if (parser.Found("db"))
g_doubleBuffer = GL_TRUE;
g_doubleBuffer = GL_TRUE;
- if (parser.Found("-speed"))
- {
- g_speed_test = GL_TRUE;
- g_doubleBuffer = GL_TRUE;
- }
-
- if (parser.Found("-va"))
+ if (parser.Found("va"))
g_use_vertex_arrays = GL_TRUE;
return wxApp::OnCmdLineParsed(parser);
g_use_vertex_arrays = GL_TRUE;
return wxApp::OnCmdLineParsed(parser);