<div dir="ltr"><div><div><div>Hi Tony,<br><br></div>As a general note osg-submissions is just for submission, osg-users/forum is for support.<br><br></div>As for the question about getting the window size exactly what you request, the OSG can do this if you override the redirect that the window manager does when adding decoration etc. to your window.  However, if you want window decoration then the window manage will do it's own thing, each one doing something slightly different, here override redirect won't be usuable.<br><br></div><div>The enable override redirect in your traits set:<br><br></div><div>   traits->overrideRedirect =  true;<br></div><div><br><br></div>Robert.<br><div><div><br><div><div><div class="gmail_extra"><br><div class="gmail_quote">On 31 March 2016 at 07:58, Tony Vasile <span dir="ltr"><<a href="mailto:minghia@gmail.com" target="_blank">minghia@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div class="HOEnZb"><div class="h5">I have specified the geometry<br>
<br>
Code:<br>
<br>
    osg::GraphicsContext::Traits *traits = new osg::GraphicsContext::Traits;<br>
    traits->windowDecoration = false;<br>
    traits->supportsResize = false;<br>
    traits->sharedContext = NULL;<br>
    traits->doubleBuffer = true;<br>
    traits->red = 8;<br>
    traits->blue = 8;<br>
    traits->green = 8;<br>
    traits->alpha = 8;<br>
    traits->depth = 24;<br>
    traits->stencil = 8;<br>
    traits->stencil = 8;<br>
    traits->x = 100;<br>
    traits->y = 0;<br>
    traits->width = 1024;<br>
    traits->height = 1024;<br>
     osg::GraphicsContext * gc = osg::GraphicsContext::createGraphicsContext(traits);<br>
<br>
<br>
<br>
What I am expecting is a window that is positioned at (100, 0) with size (1024, 1024). What I am getting a window that is size (1024, 996). Is there anyway to force that size to my desired size?<br>
<br>
I am running on Centos 6 on 64 bit kernel.<br>
<br>
------------------------<br>
Tony V<br>
<br>
------------------<br>
Read this topic online here:<br>
</div></div><a href="http://forum.openscenegraph.org/viewtopic.php?p=66681#66681" rel="noreferrer" target="_blank">http://forum.openscenegraph.org/viewtopic.php?p=66681#66681</a><br>
<br>
<br>
<br>
<br>
<br>
_______________________________________________<br>
osg-users mailing list<br>
<a href="mailto:osg-users@lists.openscenegraph.org">osg-users@lists.openscenegraph.org</a><br>
<a href="http://lists.openscenegraph.org/listinfo.cgi/osg-users-openscenegraph.org" rel="noreferrer" target="_blank">http://lists.openscenegraph.org/listinfo.cgi/osg-users-openscenegraph.org</a><br>
</blockquote></div><br></div></div></div></div></div></div>