PSEyeTexture.GetPixels32 C# (CSharp) Method

GetPixels32() public method

public GetPixels32 ( Color32 pixels ) : void
pixels UnityEngine.Color32
return void
    public void GetPixels32(Color32[] pixels)
    {
        pixelsABGR_.CopyTo(pixels, 0);
    }

Usage Example

 public void updateByPSEyeTexture(PSEyeTexture i_ptx)
 {
     i_ptx.GetPixels32((Color32[])this._buf);
     //this._rgb_pixel_driver.switchRaster(this);//バッファを上書きするからいらない。
     return;
 }
All Usage Examples Of PSEyeTexture::GetPixels32