ProcessingBlock.java
Go to the documentation of this file.
1 package com.intel.realsense.librealsense;
2 
3 public abstract class ProcessingBlock extends Options implements ProcessingBlockInterface {
4 
5  private static native void nDelete(long handle);
6 
7  @Override
8  public void invoke(Frame original) {
9  nInvoke(mHandle, original.getHandle());
10  }
11 
12  @Override
13  public void invoke(FrameSet original) {
14  nInvoke(mHandle, original.getHandle());
15  }
16 
17  @Override
18  public void close() {
19  nDelete(mHandle);
20  }
21 
22  protected static native void nInvoke(long handle, long frameHandle);
23 }
GLuint64 GLenum void * handle
Definition: glext.h:7785
static native void nInvoke(long handle, long frameHandle)
static native void nDelete(long handle)


librealsense2
Author(s): Sergey Dorodnicov , Doron Hirshberg , Mark Horn , Reagan Lopez , Itay Carpis
autogenerated on Mon May 3 2021 02:47:39