Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
igagis committed Jan 23, 2024
1 parent 1fb8722 commit 6a7944a
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/ruisapp/glue/linux/glue.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -602,7 +602,13 @@ struct window_wrapper : public utki::destructable {

// disable v-sync
glx_swap_interval_ext(this->display.display, this->window, 0);
} else if (std::find(glx_extensions.begin(), glx_extensions.end(), "GLX_MESA_swap_control") != glx_extensions.end())
} else if ( //
std::find( //
glx_extensions.begin(),
glx_extensions.end(),
"GLX_MESA_swap_control"
) != glx_extensions.end()
)
{
LOG([](auto& o) {
o << "GLX_MESA_swap_control is supported\n";
Expand Down

0 comments on commit 6a7944a

Please sign in to comment.