ProductLine.java
Go to the documentation of this file.
1 package com.intel.realsense.librealsense;
2 
3 public enum ProductLine {
4  ANY(0xff),
5  ANY_INTEL(0xfe),
6  NON_INTEL(0x01),
7  D400(0x02),
8  SR300(0x04),
9  L500(0x08),
10  T200(0x10),
11  DEPTH(L500.value() | SR300.value() | D400.value()),
12  TRACKING(T200.value());
13 
14  private final int mValue;
15 
16  private ProductLine(int value) { mValue = value; }
17  public int value() { return mValue; }
18 }
GLfloat value


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