Merge branch 'master' into tls

master
Camilla Berglund ago%!(EXTRA string=13 years)
commit c9896a2f75
  1. 2
      src/win32_opengl.c
  2. 4
      tests/windows.c

@ -30,6 +30,8 @@
#include "internal.h"
#include <stdlib.h>
//========================================================================
// The per-thread current context/window pointer

@ -67,8 +67,8 @@ int main(void)
glfwMakeContextCurrent(windows[i]);
glClearColor((GLclampf) (i & 1),
(GLclampf) (i >> 1),
i ? 0.0 : 1.0,
0.0);
i ? 0.f : 1.f,
0.f);
glfwSetWindowPos(windows[i], 100 + (i & 1) * 300, 100 + (i >> 1) * 300);
}

Loading…
Cancel
Save