コード例 #1
0
ファイル: RenderTarget.cs プロジェクト: axiom3d/axiom
 protected RenderTarget()
 {
     this.priority   = RenderTargetPriority.Default;
     this.active     = true;
     this.autoUpdate = true;
     this._timer     = Root.Instance.Timer;
     ResetStatistics();
 }
コード例 #2
0
ファイル: RenderTarget.cs プロジェクト: WolfgangSt/axiom
 protected RenderTarget(string name)
 {
     this.name = name;
     priority = RenderTargetPriority.Default;
     depthBufferPoolId = PoolId.Default;
     active = true;
     autoUpdate = true;
     ResetStatistics();
 }
コード例 #3
0
ファイル: RenderTarget.cs プロジェクト: ryan-bunker/axiom3d
		protected RenderTarget()
		{
			this.priority = RenderTargetPriority.Default;
			this.active = true;
			this.autoUpdate = true;
			this._timer = Root.Instance.Timer;
			ResetStatistics();
		}