mirror of
https://github.com/glfw/glfw.git
synced 2024-11-22 13:04:35 +00:00
Moved GLFW_VISIBLE hint use to glfwinfo.
This commit is contained in:
parent
f6a1bbf782
commit
f5bfe41456
@ -207,6 +207,8 @@ int main(int argc, char** argv)
|
|||||||
if (strategy)
|
if (strategy)
|
||||||
glfwWindowHint(GLFW_OPENGL_ROBUSTNESS, strategy);
|
glfwWindowHint(GLFW_OPENGL_ROBUSTNESS, strategy);
|
||||||
|
|
||||||
|
glfwWindowHint(GLFW_VISIBLE, GL_FALSE);
|
||||||
|
|
||||||
// We assume here that we stand a better chance of success by leaving all
|
// We assume here that we stand a better chance of success by leaving all
|
||||||
// possible details of pixel format selection to GLFW
|
// possible details of pixel format selection to GLFW
|
||||||
|
|
||||||
|
@ -55,8 +55,6 @@ int main(void)
|
|||||||
|
|
||||||
for (i = 0; i < 4; i++)
|
for (i = 0; i < 4; i++)
|
||||||
{
|
{
|
||||||
glfwWindowHint(GLFW_VISIBLE, GL_FALSE);
|
|
||||||
|
|
||||||
windows[i] = glfwCreateWindow(200, 200, GLFW_WINDOWED, titles[i], NULL);
|
windows[i] = glfwCreateWindow(200, 200, GLFW_WINDOWED, titles[i], NULL);
|
||||||
if (!windows[i])
|
if (!windows[i])
|
||||||
{
|
{
|
||||||
@ -73,7 +71,6 @@ int main(void)
|
|||||||
0.f);
|
0.f);
|
||||||
|
|
||||||
glfwSetWindowPos(windows[i], 100 + (i & 1) * 300, 100 + (i >> 1) * 300);
|
glfwSetWindowPos(windows[i], 100 + (i & 1) * 300, 100 + (i >> 1) * 300);
|
||||||
glfwShowWindow(windows[i]);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
while (running)
|
while (running)
|
||||||
|
Loading…
Reference in New Issue
Block a user