コード例 #1
0
ファイル: LGLNativeFuncs.cs プロジェクト: primuszp/Leo3D.NET
 private static extern void lglGetProjection(LGLContext context, uint index, out LGLProjection proj);
コード例 #2
0
 /// <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);
 }