openframeworks / openFrameworks

openFrameworks is a community-developed cross platform toolkit for creative coding in C++.
http://openframeworks.cc
Other
9.96k stars 2.55k forks source link

borderless windows? #2455

Open mazbox opened 11 years ago

mazbox commented 11 years ago

Now we're on GLFW, could we have the option to have borderless windows? This is really easy in ofAppGLFWWindow.cpp, just need this:

glfwWindowHint(GLFW_DECORATED, GL_FALSE);

tgfrerer commented 11 years ago

+1

bakercp commented 11 years ago

+1


http://christopherbaker.net

On Tue, Aug 13, 2013 at 5:32 PM, Tim Gfrerer notifications@github.comwrote:

+1

— Reply to this email directly or view it on GitHubhttps://github.com/openframeworks/openFrameworks/issues/2455#issuecomment-22550237 .

bakercp commented 11 years ago

in the mean time, you can get the pointer to the GLFW window and do it yourself.


http://christopherbaker.net

On Tue, Aug 13, 2013 at 5:50 PM, Christopher P. Baker < me@christopherbaker.net> wrote:

+1


http://christopherbaker.net

On Tue, Aug 13, 2013 at 5:32 PM, Tim Gfrerer notifications@github.comwrote:

+1

— Reply to this email directly or view it on GitHubhttps://github.com/openframeworks/openFrameworks/issues/2455#issuecomment-22550237 .

yty commented 11 years ago

+1 I hope you can always set, rather than only in the setupOpenGL () is set when ..

ghost commented 10 years ago

Christopher, do you have an example how to get window pointer?

bakercp commented 10 years ago

@procedural See this: http://stackoverflow.com/questions/20090312/how-do-i-customize-the-os-x-menu-bar-options-in-openframeworks/20098592#20098592

There are similar calls to get the window pointers for other systems.