<div dir="ltr">That's what I thought. It's not a huge deal of work for me anyway. But I have another question. Do the osg wrappers keep the images in the main CPU RAM, or in the GPU texture memory only?<br></div><div class="gmail_extra"><br><div class="gmail_quote">2016-04-01 16:26 GMT+01:00 Sebastian Messerschmidt <span dir="ltr"><<a href="mailto:sebastian.messerschmidt@gmx.de" target="_blank">sebastian.messerschmidt@gmx.de</a>></span>:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
  
    
  
  <div bgcolor="#FFFFFF" text="#000000"><span class="">
    <div>Am 01.04.2016 um 16:37 schrieb Bruno
      Oliveira:<br>
    </div>
    <blockquote type="cite">
      <div dir="ltr">
        <div>
          <div>Hello,<br>
            <br>
          </div>
          I am trying to render a single image with 30.000x30.000
          pixels. I do this by loaindg a PNG file into a single
          osg::Image object, and asigningt it to a texture within a gl
          quad.<br>
        </div>
      </div>
    </blockquote>
    <br>
    <blockquote type="cite">
      <div dir="ltr">
        <div><br>
          However, this crashes my app (my gpu only supports 16.368
          pixel images, ans had only 2gm ram). <br>
        </div>
      </div>
    </blockquote></span>
    This question has been asked a while ago. Generally the answer
    boiled down to: you most probably can't. OpenGL imposes a limit to
    the maximum texture size. Modern desktop GPUs should handle
    8192*8192, but you cannot assume to have this. Biggest support I've
    seen so far was 16384. One option is to split the image into pieces
    and to use multiple adjacent quads with the pieces assigned. <br>
    The memory issue might be resolved using compressed textures
    (basically using GL_COMPRESSED_RGB for your texture format). <br>
    <br>
    Do you really need to display the complete resolution? If not, the
    simplest option is to resize the texture before displaying it. <br>
    <br>
    Cheers<span class="HOEnZb"><font color="#888888"><br>
    Sebastian <br>
    </font></span><blockquote type="cite"><span class="">
      <div dir="ltr">
        <div><br>
        </div>
        How should this be done? Is there some utility in OSG to do this
        out of the box? <br>
      </div>
      <br>
      <fieldset></fieldset>
      <br>
      </span><span class=""><pre>_______________________________________________
osg-users mailing list
<a href="mailto:osg-users@lists.openscenegraph.org" target="_blank">osg-users@lists.openscenegraph.org</a>
<a href="http://lists.openscenegraph.org/listinfo.cgi/osg-users-openscenegraph.org" target="_blank">http://lists.openscenegraph.org/listinfo.cgi/osg-users-openscenegraph.org</a>
</pre>
    </span></blockquote>
    <br>
  </div>

<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>
<br></blockquote></div><br></div>