<html>
  <head>
    <meta content="text/html; charset=windows-1252"
      http-equiv="Content-Type">
  </head>
  <body bgcolor="#FFFFFF" text="#000000">
    <div class="moz-cite-prefix">Am 01.04.2016 um 16:37 schrieb Bruno
      Oliveira:<br>
    </div>
    <blockquote
cite="mid:CAO-SbStKv3-g5EHdFs1mQAyyb=Gfov+CKGHebn1HP1q455EsTA@mail.gmail.com"
      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
cite="mid:CAO-SbStKv3-g5EHdFs1mQAyyb=Gfov+CKGHebn1HP1q455EsTA@mail.gmail.com"
      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>
    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<br>
    Sebastian <br>
    <blockquote
cite="mid:CAO-SbStKv3-g5EHdFs1mQAyyb=Gfov+CKGHebn1HP1q455EsTA@mail.gmail.com"
      type="cite">
      <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 class="mimeAttachmentHeader"></fieldset>
      <br>
      <pre wrap="">_______________________________________________
osg-users mailing list
<a class="moz-txt-link-abbreviated" href="mailto:osg-users@lists.openscenegraph.org">osg-users@lists.openscenegraph.org</a>
<a class="moz-txt-link-freetext" href="http://lists.openscenegraph.org/listinfo.cgi/osg-users-openscenegraph.org">http://lists.openscenegraph.org/listinfo.cgi/osg-users-openscenegraph.org</a>
</pre>
    </blockquote>
    <br>
  </body>
</html>