Skip to content

Commit

Permalink
Don't start w/GPU accel in examples
Browse files Browse the repository at this point in the history
  • Loading branch information
dacap committed Feb 9, 2024
1 parent b571c45 commit 0d506e1
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion examples/helloworld.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ int app_main(int argc, char* argv[])
{
os::SystemRef system = os::make_system();
system->setAppMode(os::AppMode::GUI);
system->setGpuAcceleration(true);

os::WindowRef window = system->makeWindow(400, 300);

Expand Down
1 change: 0 additions & 1 deletion examples/panviewport.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,6 @@ int app_main(int argc, char* argv[])
{
os::SystemRef system = os::make_system();
system->setAppMode(os::AppMode::GUI);
system->setGpuAcceleration(true);

PanWindow window(system.get());

Expand Down
1 change: 0 additions & 1 deletion examples/shader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,6 @@ int app_main(int argc, char* argv[])
{
os::SystemRef system = os::make_system();
system->setAppMode(os::AppMode::GUI);
system->setGpuAcceleration(true);

ShaderWindow window(system.get());

Expand Down

0 comments on commit 0d506e1

Please sign in to comment.