Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-4931816

OGL: add support for non-pow2 textures

XMLWordPrintable

    • 2d
    • b26
    • generic
    • generic

      Modern OpenGL drivers from Nvidia and ATI (and potentially others) support
      the new GL_ARB_texture_non_power_of_two extension. This extension very simply
      relaxes the restriction that textures created using glTexImage2D() must have
      power-of-two dimensions. This requires a very trivial change in our OGL
      pipeline and can result in a substantial savings in texture memory.

      Consider a 540x540 ARGB image. Without this extension, we must store this image
      as a 1024x1024 texture (to meet the pow2 restriction), which requires 4194304
      bytes of texture memory. With this extension, we can simply store the image
      as a 540x540 texture, which only requires 1166400 bytes of texmem (a 75% savings
      in VRAM footprint).

            campbell Christopher Campbell (Inactive)
            campbell Christopher Campbell (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: