Beispiel #1
0
 public void SetReturnValue(float[] buffer, int ofs, int count)
 {
     if (buffer == null)
     {
         this.SetReturnValue(NSJSValue.Null(this.VirtualMachine));
         return;
     }
     this.SetReturnValue(NSJSFloat32Array.New(this.VirtualMachine, buffer, ofs, count));
 }
Beispiel #2
0
 public void Add(float *buffer, int count)
 {
     if (buffer == null)
     {
         this.Add(NSJSValue.Null(this.VirtualMachine));
         return;
     }
     this.Add(NSJSFloat32Array.New(this.VirtualMachine, buffer, count));
 }