Class RENDERDOC_AnnotationValue

All Implemented Interfaces:
AutoCloseable, NativeResource, Pointer

public class RENDERDOC_AnnotationValue extends Struct<RENDERDOC_AnnotationValue> implements NativeResource
union RENDERDOC_AnnotationValue {
    bool boolean;
    int32_t int32;
    int64_t int64;
    uint32_t uint32;
    uint64_t uint64;
    float float32;
    double float64;
    RENDERDOC_AnnotationVectorValue vector;
    char const * string;
    void * apiObject;
}
  • Field Details

    • SIZEOF

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

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

      public static final int BOOLEAN
      The struct member offsets.
    • INT32

      public static final int INT32
      The struct member offsets.
    • INT64

      public static final int INT64
      The struct member offsets.
    • UINT32

      public static final int UINT32
      The struct member offsets.
    • UINT64

      public static final int UINT64
      The struct member offsets.
    • FLOAT32

      public static final int FLOAT32
      The struct member offsets.
    • FLOAT64

      public static final int FLOAT64
      The struct member offsets.
    • VECTOR

      public static final int VECTOR
      The struct member offsets.
    • STRING

      public static final int STRING
      The struct member offsets.
    • APIOBJECT

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

    • RENDERDOC_AnnotationValue

      public RENDERDOC_AnnotationValue(ByteBuffer container)
      Creates a RENDERDOC_AnnotationValue 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