コード例 #1
0
ファイル: Viewport.generated.cs プロジェクト: zz5756712/bsf
 private static extern void Internal_create(Viewport managedInstance, RenderTarget target, float x, float y, float width, float height);
コード例 #2
0
ファイル: Viewport.generated.cs プロジェクト: zz5756712/bsf
 /// <summary>Creates a new viewport.</summary>
 public Viewport(RenderTarget target, float x = 0f, float y = 0f, float width = 1f, float height = 1f)
 {
     Internal_create(this, target, x, y, width, height);
 }
コード例 #3
0
ファイル: Viewport.generated.cs プロジェクト: zz5756712/bsf
 private static extern void Internal_setTarget(IntPtr thisPtr, RenderTarget target);