This commit is contained in:
TotallyNotElite 2018-12-04 16:36:42 +01:00
parent b7e2c85f47
commit 2656f8a181
3 changed files with 34 additions and 30 deletions

2
.clang-format Normal file → Executable file
View File

@ -10,6 +10,7 @@ AllowShortFunctionsOnASingleLine: None
AllowShortIfStatementsOnASingleLine: 'false' AllowShortIfStatementsOnASingleLine: 'false'
AllowShortLoopsOnASingleLine: 'false' AllowShortLoopsOnASingleLine: 'false'
BreakBeforeBraces: Allman BreakBeforeBraces: Allman
ColumnLimit: 0
ConstructorInitializerAllOnOneLineOrOnePerLine: 'false' ConstructorInitializerAllOnOneLineOrOnePerLine: 'false'
Cpp11BracedListStyle: 'false' Cpp11BracedListStyle: 'false'
IndentCaseLabels: 'false' IndentCaseLabels: 'false'
@ -31,4 +32,5 @@ Standard: Auto
TabWidth: '4' TabWidth: '4'
UseTab: Never UseTab: Never
... ...

View File

@ -193,7 +193,8 @@ int xoverlay_glx_create_window()
{ {
return -1; return -1;
} }
if (!glXIsDirect(xoverlay_library.display, glx_state.context)); if (!glXIsDirect(xoverlay_library.display, glx_state.context))
;
glXMakeCurrent(xoverlay_library.display, xoverlay_library.window, glXMakeCurrent(xoverlay_library.display, xoverlay_library.window,
glx_state.context); glx_state.context);
glewExperimental = GL_TRUE; glewExperimental = GL_TRUE;
@ -207,7 +208,8 @@ int xoverlay_glx_create_window()
(PFNGLXSWAPINTERVALEXTPROC) glXGetProcAddressARB( (PFNGLXSWAPINTERVALEXTPROC) glXGetProcAddressARB(
(const GLubyte *) "glXSwapIntervalEXT"); (const GLubyte *) "glXSwapIntervalEXT");
if (glXSwapIntervalEXT) if (glXSwapIntervalEXT)
glXSwapIntervalEXT(xoverlay_library.display, xoverlay_library.window, 0); glXSwapIntervalEXT(xoverlay_library.display, xoverlay_library.window,
0);
glXSwapBuffers(xoverlay_library.display, xoverlay_library.window); glXSwapBuffers(xoverlay_library.display, xoverlay_library.window);
return 0; return 0;