コード例 #1
0
ファイル: ShaderMethod.cs プロジェクト: damian-666/ReignSDK
 public ShaderMethod(ShaderMethodTypes type)
 {
     this.Type = type;
     if (type == ShaderMethodTypes.VS)
     {
         Precision = ShaderMethodPrecisions.High;
     }
     else
     {
         Precision = ShaderMethodPrecisions.Low;
     }
 }
コード例 #2
0
ファイル: ShaderMethod.cs プロジェクト: damian-666/ReignSDK
 public ShaderMethod(ShaderMethodTypes type, ShaderMethodPrecisions precision)
 {
     this.Type      = type;
     this.Precision = precision;
 }
コード例 #3
0
ファイル: ShaderMethod.cs プロジェクト: reignstudios/ReignSDK
 public ShaderMethod(ShaderMethodTypes type, ShaderMethodPrecisions precision)
 {
     this.Type = type;
     this.Precision = precision;
 }
コード例 #4
0
ファイル: ShaderMethod.cs プロジェクト: reignstudios/ReignSDK
 public ShaderMethod(ShaderMethodTypes type)
 {
     this.Type = type;
     if (type == ShaderMethodTypes.VS) Precision = ShaderMethodPrecisions.High;
     else Precision = ShaderMethodPrecisions.Low;
 }