コード例 #1
0
ファイル: SamplerState.cs プロジェクト: reignstudios/ReignSDK
 public static SamplerState New(DisposableI parent, SamplerStateDescI desc)
 {
     return new SamplerState(parent, desc);
 }
コード例 #2
0
ファイル: SamplerState.cs プロジェクト: damian-666/ReignSDK
 public SamplerState(DisposableI parent, SamplerStateDescI desc)
     : base(parent)
 {
     video     = parent.FindParentOrSelfWithException <Video>();
     this.desc = (SamplerStateDesc)desc;
 }
コード例 #3
0
ファイル: SamplerState.cs プロジェクト: reignstudios/ReignSDK
 public SamplerState(DisposableI parent, SamplerStateDescI desc)
     : base(parent)
 {
     video = parent.FindParentOrSelfWithException<Video>();
     this.desc = (SamplerStateDesc)desc;
 }
コード例 #4
0
ファイル: SamplerState.cs プロジェクト: damian-666/ReignSDK
 public static SamplerState New(DisposableI parent, SamplerStateDescI desc)
 {
     return(new SamplerState(parent, desc));
 }