Re: [osg-users] Clipping osgText::Text

2019-10-25 Thread Chris Djali
Hi,

It might not necessarily be fast, as you'd be changing state that would 
normally stay the same between consecutive draw calls, but you could also 
change the scissor rectangle to the region you want to keep, or you could draw 
a rectangle with the same depth as the text, then set the depth test to equal, 
then draw the text. Other options include adding discards to the fragment 
shader when the fragment is outside the rectangle (which can sometimes make all 
draw calls that frame slower, not just the current one, especially on tiled 
renderers like mobile GPUs and post-Maxwell Nvidia cards, so you'll want to 
avoid this, too).

Cheers,
Chris

--
Read this topic online here:
http://forum.openscenegraph.org/viewtopic.php?p=76859#76859





___
osg-users mailing list
osg-users@lists.openscenegraph.org
http://lists.openscenegraph.org/listinfo.cgi/osg-users-openscenegraph.org


[osg-users] Clipping osgText::Text

2019-10-24 Thread Catalin
Hi,

Is there a way to clip the rendering of Text by a rectangle without using
stencil buffer or clipping planes?

Thank you.
___
osg-users mailing list
osg-users@lists.openscenegraph.org
http://lists.openscenegraph.org/listinfo.cgi/osg-users-openscenegraph.org