diff --git a/examples/00-helloworld/helloworld.cpp b/examples/00-helloworld/helloworld.cpp index 238a7be84..7819b8106 100644 --- a/examples/00-helloworld/helloworld.cpp +++ b/examples/00-helloworld/helloworld.cpp @@ -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); diff --git a/examples/01-cubes/cubes.cpp b/examples/01-cubes/cubes.cpp index a50318d13..94e15bbb0 100644 --- a/examples/01-cubes/cubes.cpp +++ b/examples/01-cubes/cubes.cpp @@ -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); diff --git a/examples/02-metaballs/metaballs.cpp b/examples/02-metaballs/metaballs.cpp index 325a51f19..c948aa312 100644 --- a/examples/02-metaballs/metaballs.cpp +++ b/examples/02-metaballs/metaballs.cpp @@ -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); diff --git a/examples/03-raymarch/raymarch.cpp b/examples/03-raymarch/raymarch.cpp index 3731b5403..3a8710339 100644 --- a/examples/03-raymarch/raymarch.cpp +++ b/examples/03-raymarch/raymarch.cpp @@ -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); diff --git a/examples/04-mesh/mesh.cpp b/examples/04-mesh/mesh.cpp index 2e9418f96..db5ca6afd 100644 --- a/examples/04-mesh/mesh.cpp +++ b/examples/04-mesh/mesh.cpp @@ -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); diff --git a/examples/05-instancing/instancing.cpp b/examples/05-instancing/instancing.cpp index 39b7bb740..30c037a69 100644 --- a/examples/05-instancing/instancing.cpp +++ b/examples/05-instancing/instancing.cpp @@ -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); diff --git a/examples/06-bump/bump.cpp b/examples/06-bump/bump.cpp index f3fe9fa3b..eac8d4106 100644 --- a/examples/06-bump/bump.cpp +++ b/examples/06-bump/bump.cpp @@ -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); diff --git a/examples/08-update/update.cpp b/examples/08-update/update.cpp index 33e338139..0a133fade 100644 --- a/examples/08-update/update.cpp +++ b/examples/08-update/update.cpp @@ -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); diff --git a/examples/09-hdr/hdr.cpp b/examples/09-hdr/hdr.cpp index 55ee14e27..9c3843d03 100644 --- a/examples/09-hdr/hdr.cpp +++ b/examples/09-hdr/hdr.cpp @@ -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);