Exemplo n.º 1
0
		private static IntPtr Create(Context context, Query query, EnumerationErrors errors)
		{
            IntPtr handle;
            int status = SafeNativeMethods.xnCreateDevice(context.InternalObject, out handle,
                query == null ? IntPtr.Zero : query.InternalObject,
                errors == null ? IntPtr.Zero : errors.InternalObject);
            WrapperUtils.ThrowOnError(status);
            return handle;
        }
Exemplo n.º 2
0
 public DepthGenerator(Context context, Query query)
     : this(context, query, null)
 {
 }
Exemplo n.º 3
0
 public DepthGenerator(Context context, Query query, EnumerationErrors errors)
     : this(context, Create(context, query, errors), false)
 {
 }
Exemplo n.º 4
0
        internal IntPtr CreateAnyProductionTreeImpl(NodeType type, Query query)
        {
            IntPtr nodeHandle;
            using (EnumerationErrors errors = new EnumerationErrors())
            {
                int status = SafeNativeMethods.xnCreateAnyProductionTree(this.InternalObject, type,
                    query == null ? IntPtr.Zero : query.InternalObject,
                    out nodeHandle, errors.InternalObject);
                WrapperUtils.CheckEnumeration(status, errors);
            }

            return nodeHandle;
        }
Exemplo n.º 5
0
        public NodeInfoList EnumerateProductionTrees(NodeType type, Query query)
        {
            IntPtr resultList;

            using (EnumerationErrors errors = new EnumerationErrors())
            {
                int status = SafeNativeMethods.xnEnumerateProductionTrees(this.InternalObject, type,
                    query == null ? IntPtr.Zero : query.InternalObject,
                    out resultList,
                    errors.InternalObject);
                WrapperUtils.CheckEnumeration(status, errors);
            }

            return new NodeInfoList(resultList);
        }
Exemplo n.º 6
0
 public ProductionNode CreateAnyProductionTree(NodeType type, Query query)
 {
     IntPtr nodeHandle = CreateAnyProductionTreeImpl(type, query);
     ProductionNode result = CreateProductionNodeObject(nodeHandle, type);
     // release the handle (result now owns it)
     SafeNativeMethods.xnProductionNodeRelease(nodeHandle);
     return result;
 }
Exemplo n.º 7
0
 public AudioGenerator(Context context, Query query)
     : this(context, query, null)
 {
 }
Exemplo n.º 8
0
 public HandsGenerator(Context context, Query query)
     : this(context, query, null)
 {
 }
Exemplo n.º 9
0
 public UserGenerator(Context context, Query query)
     : this(context, query, null)
 {
 }
Exemplo n.º 10
0
 public Device(Context context, Query query)
     : this(context, query, null)
 {
 }
Exemplo n.º 11
0
 public SceneAnalyzer(Context context, Query query)
     : this(context, query, null)
 {
 }
Exemplo n.º 12
0
 public SceneAnalyzer(Context context, Query query, EnumerationErrors errors)
     : this(context, Create(context, query, errors), false)
 {
 }
Exemplo n.º 13
0
 public ImageGenerator(Context context, Query query)
     : this(context, query, null)
 {
 }
Exemplo n.º 14
0
 public GestureGenerator(Context context, Query query)
     : this(context, query, null)
 {
 }
Exemplo n.º 15
0
 private static IntPtr Create(Context context, Query query)
 {
     return context.CreateAnyProductionTreeImpl(NodeType.Device, query);
 }
Exemplo n.º 16
0
 public Device(Context context, Query query)
     : this(context, Create(context, query), false)
 {
 }