Package org.lwjgl.ovr

Class OVRLayerUnion

All Implemented Interfaces:
AutoCloseable, NativeResource, Pointer

public class OVRLayerUnion extends Struct<OVRLayerUnion> implements NativeResource
Union that combines ovrLayer types in a way that allows them to be used in a polymorphic way.

Layout


 union ovrLayer_Union {
     ovrLayerHeader Header();
     ovrLayerEyeFov EyeFov;
     ovrLayerEyeFovDepth EyeFovDepth;
     ovrLayerEyeMatrix EyeMatrix;
     ovrLayerEyeFovMultires Multires;
     ovrLayerCylinder Cylinder;
     ovrLayerCube Cube;
     ovrLayerQuad Quad;
 }