Fixed reset flag in examples.

This commit is contained in:
bkaradzic 2013-05-08 22:57:54 -07:00
parent 528360ac6c
commit 3601c74e92
9 changed files with 9 additions and 9 deletions

View File

@ -17,7 +17,7 @@ int _main_(int /*_argc*/, char** /*_argv*/)
uint32_t reset = BGFX_RESET_VSYNC;
bgfx::init();
bgfx::reset(width, height);
bgfx::reset(width, height, reset);
// Enable debug text.
bgfx::setDebug(debug);

View File

@ -102,7 +102,7 @@ int _main_(int /*_argc*/, char** /*_argv*/)
uint32_t reset = BGFX_RESET_VSYNC;
bgfx::init();
bgfx::reset(width, height);
bgfx::reset(width, height, reset);
// Enable debug text.
bgfx::setDebug(debug);

View File

@ -502,7 +502,7 @@ int _main_(int /*_argc*/, char** /*_argv*/)
uint32_t reset = BGFX_RESET_VSYNC;
bgfx::init();
bgfx::reset(width, height);
bgfx::reset(width, height, reset);
// Enable debug text.
bgfx::setDebug(debug);

View File

@ -181,7 +181,7 @@ int _main_(int /*_argc*/, char** /*_argv*/)
uint32_t reset = BGFX_RESET_VSYNC;
bgfx::init();
bgfx::reset(width, height);
bgfx::reset(width, height, reset);
// Enable debug text.
bgfx::setDebug(debug);

View File

@ -286,7 +286,7 @@ int _main_(int /*_argc*/, char** /*_argv*/)
uint32_t reset = BGFX_RESET_VSYNC;
bgfx::init();
bgfx::reset(width, height);
bgfx::reset(width, height, reset);
// Enable debug text.
bgfx::setDebug(debug);

View File

@ -102,7 +102,7 @@ int _main_(int /*_argc*/, char** /*_argv*/)
uint32_t reset = BGFX_RESET_VSYNC;
bgfx::init();
bgfx::reset(width, height);
bgfx::reset(width, height, reset);
// Enable debug text.
bgfx::setDebug(debug);

View File

@ -258,7 +258,7 @@ int _main_(int /*_argc*/, char** /*_argv*/)
uint32_t reset = BGFX_RESET_VSYNC;
bgfx::init();
bgfx::reset(width, height);
bgfx::reset(width, height, reset);
// Enable debug text.
bgfx::setDebug(debug);

View File

@ -133,7 +133,7 @@ int _main_(int /*_argc*/, char** /*_argv*/)
uint32_t reset = BGFX_RESET_VSYNC;
bgfx::init();
bgfx::reset(width, height);
bgfx::reset(width, height, reset);
// Enable debug text.
bgfx::setDebug(debug);

View File

@ -413,7 +413,7 @@ int _main_(int /*_argc*/, char** /*_argv*/)
uint32_t reset = BGFX_RESET_VSYNC;
bgfx::init();
bgfx::reset(width, height);
bgfx::reset(width, height, reset);
// Enable debug text.
bgfx::setDebug(debug);