Examples: changed default background color.

features/sdl_renderer3_multiviewports
ocornut ago%!(EXTRA string=11 years)
parent a548c9b0d5
commit 381c7428c1
  1. 2
      examples/directx11_example/main.cpp
  2. 2
      examples/directx9_example/main.cpp
  3. 2
      examples/opengl3_example/main.cpp
  4. 2
      examples/opengl_example/main.cpp

@ -550,7 +550,7 @@ int WINAPI wWinMain(HINSTANCE hInst, HINSTANCE, LPWSTR, int)
bool show_test_window = true;
bool show_another_window = false;
ImVec4 clear_col(0.8f, 0.6f, 0.6f, 1.0f);
ImVec4 clear_col = ImColor(114, 144, 154);
// Enter the message loop
MSG msg;

@ -310,7 +310,7 @@ int WINAPI wWinMain(HINSTANCE hInst, HINSTANCE, LPWSTR, int)
bool show_test_window = true;
bool show_another_window = false;
ImVec4 clear_col(0.8f, 0.6f, 0.6f, 1.0f);
ImVec4 clear_col = ImColor(114, 144, 154);
// Enter the message loop
MSG msg;

@ -327,7 +327,7 @@ int main(int argc, char** argv)
bool show_test_window = true;
bool show_another_window = false;
ImVec4 clear_col(0.8f, 0.6f, 0.6f, 1.0f);
ImVec4 clear_col = ImColor(114, 144, 154);
while (!glfwWindowShouldClose(window))
{

@ -237,7 +237,7 @@ int main(int argc, char** argv)
bool show_test_window = true;
bool show_another_window = false;
ImVec4 clear_col(0.8f, 0.6f, 0.6f, 1.0f);
ImVec4 clear_col = ImColor(114, 144, 154);
while (!glfwWindowShouldClose(window))
{

Loading…
Cancel
Save