private static extern void lglGetProjection(LGLContext context, uint index, out LGLProjection proj);
/// <summary> /// Returns the projection parameters for a given view. /// </summary> /// <param name="context">Represent an LGL context.</param> /// <param name="index">The index of the view.</param> /// <param name="proj">Pointer to an LGLProjection structure that will be filled by the function.</param> public static void GetProjection(LGLContext context, uint index, out LGLProjection proj) { lglGetProjection(context, index, out proj); }