Class XrGeometryInstanceCreateInfoFB

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

public class XrGeometryInstanceCreateInfoFB extends org.lwjgl.system.Struct<XrGeometryInstanceCreateInfoFB> implements org.lwjgl.system.NativeResource
A create structure for geometry instance.
Member Descriptions
  • type is the XrStructureType of this structure.
  • next is NULL or a pointer to the next structure in a structure chain. No such structures are defined in core OpenXR or this extension.
  • layer is the XrPassthroughLayerFB.
  • mesh is the XrTriangleMeshFB.
  • baseSpace is the XrSpace that defines the geometry instance’s base space for transformations.
  • pose is the XrPosef that defines the geometry instance’s pose.
  • scale is the XrVector3f that defines the geometry instance’s scale.
Valid Usage (Implicit)
See Also

XrPosef, XrVector3f, CreateGeometryInstanceFB

Layout


 struct XrGeometryInstanceCreateInfoFB {
     XrStructureType type;
     void const * next;
     XrPassthroughLayerFB layer;
     XrTriangleMeshFB mesh;
     XrSpace baseSpace;
     XrPosef pose;
     XrVector3f scale;
 }