コード例 #1
0
ファイル: Decode.cs プロジェクト: suntabu/UnityWebGLWebP
 public static extern int WebPPictureHasTransparency(ref WebPPicture picture);
コード例 #2
0
ファイル: Decode.cs プロジェクト: suntabu/UnityWebGLWebP
 public static extern int WebPPictureYUVAToARGB(ref WebPPicture picture);
コード例 #3
0
ファイル: Decode.cs プロジェクト: suntabu/UnityWebGLWebP
 public static extern void WebPCleanupTransparentArea(ref WebPPicture picture);
コード例 #4
0
ファイル: Decode.cs プロジェクト: suntabu/UnityWebGLWebP
 public static extern int WebPPictureImportBGRX(ref WebPPicture picture, [InAttribute()] IntPtr bgrx, int bgrx_stride);
コード例 #5
0
ファイル: Decode.cs プロジェクト: suntabu/UnityWebGLWebP
 public static extern int WebPPictureARGBToYUVA(ref WebPPicture picture, WebPEncCSP colorspace);
コード例 #6
0
ファイル: Decode.cs プロジェクト: suntabu/UnityWebGLWebP
 public static extern int WebPPictureInitInternal(ref WebPPicture param0, int param1);
コード例 #7
0
ファイル: Decode.cs プロジェクト: suntabu/UnityWebGLWebP
 public static extern int WebPPictureImportRGBX(ref WebPPicture picture, [InAttribute()] IntPtr rgbx, int rgbx_stride);
コード例 #8
0
ファイル: Decode.cs プロジェクト: suntabu/UnityWebGLWebP
 public static extern int WebPPictureView(ref WebPPicture src, int left, int top, int width, int height, ref WebPPicture dst);
コード例 #9
0
ファイル: Decode.cs プロジェクト: suntabu/UnityWebGLWebP
 public static extern int WebPPictureIsView(ref WebPPicture picture);
コード例 #10
0
ファイル: Decode.cs プロジェクト: suntabu/UnityWebGLWebP
 public static extern int WebPPictureDistortion(ref WebPPicture src, ref WebPPicture reference, int metric_type, ref float result);
コード例 #11
0
ファイル: Decode.cs プロジェクト: suntabu/UnityWebGLWebP
 public static extern int WebPPictureCrop(ref WebPPicture picture, int left, int top, int width, int height);
コード例 #12
0
ファイル: Decode.cs プロジェクト: suntabu/UnityWebGLWebP
 public static extern int WebPPictureCopy(ref WebPPicture src, ref WebPPicture dst);
コード例 #13
0
ファイル: Decode.cs プロジェクト: suntabu/UnityWebGLWebP
 public static extern void WebPPictureFree(ref WebPPicture picture);
コード例 #14
0
ファイル: Decode.cs プロジェクト: suntabu/UnityWebGLWebP
 public static extern int WebPPictureAlloc(ref WebPPicture picture);
コード例 #15
0
ファイル: Decode.cs プロジェクト: suntabu/UnityWebGLWebP
 public static extern int WebPEncode(ref WebPConfig config, ref WebPPicture picture);
コード例 #16
0
ファイル: Decode.cs プロジェクト: suntabu/UnityWebGLWebP
 public static extern int WebPPictureRescale(ref WebPPicture pic, int width, int height);
コード例 #17
0
ファイル: Decode.cs プロジェクト: suntabu/UnityWebGLWebP
 /// <summary>
 /// Should always be called, to initialize the structure. Returns false in case
 /// of version mismatch. WebPPictureInit() must have succeeded before using the
 /// 'picture' object.
 /// Note that, by default, use_argb is false and colorspace is WEBP_YUV420.
 /// </summary>
 /// <param name="picture"></param>
 /// <returns></returns>
 public static int WebPPictureInit(ref WebPPicture picture)
 {
     return(Decode.WebPPictureInitInternal(ref picture, WEBP_ENCODER_ABI_VERSION));
 }
コード例 #18
0
ファイル: Decode.cs プロジェクト: suntabu/UnityWebGLWebP
 public static extern int WebPMemoryWrite([InAttribute()] IntPtr data, UIntPtr data_size, ref WebPPicture picture);