Class XrCompositionLayerAlphaBlendFB

java.lang.Object
org.lwjgl.system.Pointer.Default
org.lwjgl.system.Struct<XrCompositionLayerAlphaBlendFB>
org.lwjgl.openxr.XrCompositionLayerAlphaBlendFB
All Implemented Interfaces:
AutoCloseable, org.lwjgl.system.NativeResource, org.lwjgl.system.Pointer

public class XrCompositionLayerAlphaBlendFB extends org.lwjgl.system.Struct<XrCompositionLayerAlphaBlendFB> implements org.lwjgl.system.NativeResource
specifies blend factors for composition layers.
Description

XrCompositionLayerAlphaBlendFB provides applications with explicit control over source and destination blend factors.

The XrCompositionLayerAlphaBlendFB structure must be provided in the next chain of the XrCompositionLayerBaseHeader structure.

Valid Usage (Implicit)
See Also

XrCompositionLayerBaseHeader

Layout


 struct XrCompositionLayerAlphaBlendFB {
     XrStructureType type();
     void * next();
     XrBlendFactorFB srcFactorColor();
     XrBlendFactorFB dstFactorColor();
     XrBlendFactorFB srcFactorAlpha();
     XrBlendFactorFB dstFactorAlpha();
 }
  • Field Details

    • SIZEOF

      public static final int SIZEOF
      The struct size in bytes.
    • ALIGNOF

      public static final int ALIGNOF
      The struct alignment in bytes.
    • TYPE

      public static final int TYPE
      The struct member offsets.
    • NEXT

      public static final int NEXT
      The struct member offsets.
    • SRCFACTORCOLOR

      public static final int SRCFACTORCOLOR
      The struct member offsets.
    • DSTFACTORCOLOR

      public static final int DSTFACTORCOLOR
      The struct member offsets.
    • SRCFACTORALPHA

      public static final int SRCFACTORALPHA
      The struct member offsets.
    • DSTFACTORALPHA

      public static final int DSTFACTORALPHA
      The struct member offsets.
  • Constructor Details

    • XrCompositionLayerAlphaBlendFB

      public XrCompositionLayerAlphaBlendFB(ByteBuffer container)
      Creates a XrCompositionLayerAlphaBlendFB instance at the current position of the specified ByteBuffer container. Changes to the buffer's content will be visible to the struct instance and vice versa.

      The created instance holds a strong reference to the container object.

  • Method Details