Example #1
0
 public float2(half v)
 {
     this.x = v;
     this.y = v;
 }
Example #2
0
 public half2(float v)
 {
     this.x = (half)v;
     this.y = (half)v;
 }
Example #3
0
 public half2(double v)
 {
     this.x = (half)v;
     this.y = (half)v;
 }
Example #4
0
 public half2(half v)
 {
     this.x = v;
     this.y = v;
 }
Example #5
0
 public static half2 half2(half x, half y)
 {
     return(new half2(x, y));
 }
Example #6
0
 public half3(float3 v)
 {
     this.x = (half)v.x;
     this.y = (half)v.y;
     this.z = (half)v.z;
 }
Example #7
0
 public half2(half x, half y)
 {
     this.x = x;
     this.y = y;
 }
Example #8
0
 public DebuggerProxy(half3 v)
 {
     x = v.x;
     y = v.y;
     z = v.z;
 }
Example #9
0
 public static half3 half3(half x, half y, half z)
 {
     return(new half3(x, y, z));
 }
Example #10
0
 public static uint hash(half v)
 {
     return(v.value * 0x745ED837u + 0x816EFB5Du);
 }
Example #11
0
 public half3(double3 v)
 {
     this.x = (half)v.x;
     this.y = (half)v.y;
     this.z = (half)v.z;
 }
Example #12
0
 public static half half(half x)
 {
     return(new half(x));
 }
Example #13
0
 public static double2 double2(half v)
 {
     return(new double2(v));
 }
Example #14
0
 public double2(half v)
 {
     this.x = v;
     this.y = v;
 }
Example #15
0
 public half3(half v)
 {
     this.x = v;
     this.y = v;
     this.z = v;
 }
Example #16
0
 public static half3 half3(half x, half2 yz)
 {
     return(new half3(x, yz));
 }
Example #17
0
 public half3(float v)
 {
     this.x = (half)v;
     this.y = (half)v;
     this.z = (half)v;
 }
Example #18
0
 public static half3 half3(half2 xy, half z)
 {
     return(new half3(xy, z));
 }
Example #19
0
 public half3(double v)
 {
     this.x = (half)v;
     this.y = (half)v;
     this.z = (half)v;
 }
Example #20
0
 public static half3 half3(half v)
 {
     return(new half3(v));
 }
Example #21
0
 public half2(half2 xy)
 {
     this.x = xy.x;
     this.y = xy.y;
 }
Example #22
0
 public half3(half x, half y, half z)
 {
     this.x = x;
     this.y = y;
     this.z = z;
 }
Example #23
0
 public DebuggerProxy(half2 v)
 {
     x = v.x;
     y = v.y;
 }
Example #24
0
 public half3(half x, half2 yz)
 {
     this.x = x;
     this.y = yz.x;
     this.z = yz.y;
 }
Example #25
0
 public static half2 half2(half v)
 {
     return(new half2(v));
 }
Example #26
0
 public half3(half2 xy, half z)
 {
     this.x = xy.x;
     this.y = xy.y;
     this.z = z;
 }
Example #27
0
 public half2(float2 v)
 {
     this.x = (half)v.x;
     this.y = (half)v.y;
 }
Example #28
0
 public half3(half3 xyz)
 {
     this.x = xyz.x;
     this.y = xyz.y;
     this.z = xyz.z;
 }
Example #29
0
 public half2(double2 v)
 {
     this.x = (half)v.x;
     this.y = (half)v.y;
 }
Example #30
0
 public static float2 float2(half v)
 {
     return(new float2(v));
 }