コード例 #1
0
ファイル: AndroidContext.cs プロジェクト: ryan-bunker/axiom3d
		public AndroidContext( AndroidSupport glsupport, IGraphicsContext glcontext, IWindowInfo windowInfo )
		{
			this.glSupport = glsupport;
			this.glContext = glcontext;
			this.windowInfo = windowInfo;
		}
コード例 #2
0
 public AndroidContext(AndroidSupport glsupport, IGraphicsContext glcontext, IWindowInfo windowInfo)
 {
     this.glSupport  = glsupport;
     this.glContext  = glcontext;
     this.windowInfo = windowInfo;
 }
コード例 #3
0
ファイル: AndroidWindow.cs プロジェクト: bostich83/axiom
 public AndroidWindow(AndroidSupport glSupport)
 {
     this.glSupport = glSupport;
     this.closed    = false;
     this.context   = null;
 }
コード例 #4
0
ファイル: AndroidWindow.cs プロジェクト: ryan-bunker/axiom3d
		public AndroidWindow( AndroidSupport glSupport )
		{
			this.glSupport = glSupport;
			this.closed = false;
			this.context = null;
		}