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

Verify whether we need to clamp maxTexture size in MTLGraphicsConfig

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Unresolved
    • Icon: P4 P4
    • tbd
    • 17
    • client-libs
    • 2d
    • generic
    • os_x

      We are clamping texture size to half similar to OpenGL with code :
      // 7160609: GL still fails to create a square texture of this
                      // size. Half should be safe enough.
                      // Explicitly not support a texture more than 2^14, see 8010999.
                      textureSize = textureSize <= 16384 ? textureSize / 2 : 8192;

      Need to verify whether we need to do this or allow maxTexture size to be 16384

            jdv Jayathirth D V
            jdv Jayathirth D V
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

              Created:
              Updated: