Class EXTTextureFormatBGRA8888



  • public final class EXTTextureFormatBGRA8888
    extends java.lang.Object
    Native bindings to the EXT_texture_format_BGRA8888 extension.

    This extension provides an additional format and type combination for use when specifying texture data. The current allowed combinations are:

        Internal Format     External Format Type                    Bytes per Pixel
        ---------------     --------------- ----                    ---------------
        RGBA                RGBA             UNSIGNED_BYTE          4
        RGB                 RGB              UNSIGNED_BYTE          3
        RGBA                RGBA             UNSIGNED_SHORT_4_4_4_4 2
        RGBA                RGBA             UNSIGNED_SHORT_5_5_5_1 2
        RGB                 RGB              UNSIGNED_SHORT_5_6_5   2
        LUMINANCE_ALPHA     LUMINANCE_ALPHA  UNSIGNED_BYTE          2
        LUMINANCE           LUMINANCE        UNSIGNED_BYTE          1
        ALPHA               ALPHA            UNSIGNED_BYTE          1

    This table is extended to include format BGRA_EXT and type UNSIGNED_BYTE:

    Internal Format     External Format Type                    Bytes per Pixel
    ---------------     --------------- ----                    ---------------
    BGRA_EXT            BGRA_EXT        UNSIGNED_BYTE           4
    RGBA                RGBA            UNSIGNED_BYTE           4
    RGB                 RGB             UNSIGNED_BYTE           3
    RGBA                RGBA            UNSIGNED_SHORT_4_4_4_4  2
    RGBA                RGBA            UNSIGNED_SHORT_5_5_5_1  2
    RGB                 RGB             UNSIGNED_SHORT_5_6_5    2
    LUMINANCE_ALPHA     LUMINANCE_ALPHA UNSIGNED_BYTE           2
    LUMINANCE           LUMINANCE       UNSIGNED_BYTE           1
    ALPHA               ALPHA           UNSIGNED_BYTE           1
    • Field Summary

      Fields 
      Modifier and Type Field and Description
      static int GL_BGRA_EXT
      Accepted by the format and internalformat parameters of TexImage2D and the format parameter of TexSubImage2D.
    • Method Summary

      • Methods inherited from class java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • GL_BGRA_EXT

        public static final int GL_BGRA_EXT
        Accepted by the format and internalformat parameters of TexImage2D and the format parameter of TexSubImage2D.
        See Also:
        Constant Field Values