Example #1
0
 public static int fcExrBeginFrame(fcEXRContext ctx, string path, int width, int height, int id)
 {
     return(fcExrBeginFrameDeferred(ctx, path, width, height, id));
 }
Example #2
0
 [DllImport("FrameCapturer")] private static extern int         fcExrAddLayerTextureDeferred(fcEXRContext ctx, IntPtr tex, fcPixelFormat f, int ch, string name, Bool flipY, int id);
Example #3
0
 [DllImport("FrameCapturer")] private static extern int         fcExrEndFrameDeferred(fcEXRContext ctx, int id);
Example #4
0
 [DllImport("FrameCapturer")] public static extern void         fcExrDestroyContext(fcEXRContext ctx);
Example #5
0
 [DllImport("FrameCapturer")] private static extern int         fcExrBeginFrameDeferred(fcEXRContext ctx, string path, int width, int height, int id);
Example #6
0
 private static extern int fcExrBeginFrameDeferred(fcEXRContext ctx, string path, int width, int height, int id);
Example #7
0
 public static extern bool fcExrEndFrame(fcEXRContext ctx);
Example #8
0
 public static extern bool fcExrAddLayerTexture(fcEXRContext ctx, IntPtr tex, RenderTextureFormat f, int ch, string name, bool flipY);
Example #9
0
 public static extern bool fcExrBeginFrame(fcEXRContext ctx, string path, int width, int height);
Example #10
0
 public static int fcExrEndFrame(fcEXRContext ctx, int id)
 {
     return fcExrEndFrameDeferred(ctx, id);
 }
Example #11
0
 public static extern bool fcExrAddLayerPixels(fcEXRContext ctx, IntPtr pixels, fcPixelFormat f, int ch, string name, bool flipY);
Example #12
0
 public static int fcExrBeginFrame(fcEXRContext ctx, string path, int width, int height, int id)
 {
     return fcExrBeginFrameDeferred(ctx, path, width, height, id);
 }
Example #13
0
 public static int fcExrAddLayerTexture(fcEXRContext ctx, RenderTexture tex, int ch, string name, int id)
 {
     return fcExrAddLayerTextureDeferred(ctx, tex.GetNativeTexturePtr(), fcGetPixelFormat(tex.format), ch, name, false, id);
 }
Example #14
0
 private static extern int fcExrEndFrameDeferred(fcEXRContext ctx, int id);
Example #15
0
 public static int fcExrEndFrame(fcEXRContext ctx, int id)
 {
     return(fcExrEndFrameDeferred(ctx, id));
 }
Example #16
0
 public static extern void fcExrDestroyContext(fcEXRContext ctx);
Example #17
0
 public static int fcExrAddLayerTexture(fcEXRContext ctx, RenderTexture tex, int ch, string name, int id)
 {
     return(fcExrAddLayerTextureDeferred(ctx, tex.GetNativeTexturePtr(), fcGetPixelFormat(tex.format), ch, name, false, id));
 }
Example #18
0
 private static extern int fcExrAddLayerTextureDeferred(fcEXRContext ctx, IntPtr tex, fcPixelFormat f, int ch, string name, Bool flipY, int id);