Remove trailing spaces from bunch of files.

(cherry picked from commit 50e0f8d4ddf4c426f62f346c8260a927f6b7c779)
This commit is contained in:
Rokas Kupstys
2019-10-15 16:20:27 +03:00
committed by omar
parent c21fdabb43
commit 6892b81578
11 changed files with 20 additions and 20 deletions

View File

@ -159,9 +159,9 @@ bool ImGui_ImplOpenGL3_Init(const char* glsl_version)
strcpy(g_GlslVersionString, glsl_version);
strcat(g_GlslVersionString, "\n");
// Dummy construct to make it easily visible in the IDE and debugger which GL loader has been selected.
// Dummy construct to make it easily visible in the IDE and debugger which GL loader has been selected.
// The code actually never uses the 'gl_loader' variable! It is only here so you can read it!
// If auto-detection fails or doesn't select the same GL loader file as used by your application,
// If auto-detection fails or doesn't select the same GL loader file as used by your application,
// you are likely to get a crash below.
// You can explicitly select a loader by using '#define IMGUI_IMPL_OPENGL_LOADER_XXX' in imconfig.h or compiler command-line.
const char* gl_loader = "Unknown";