From 31f9c57bc50ae053cfaf039a1dfdb128e2494458 Mon Sep 17 00:00:00 2001 From: Miikka Heikkinen Date: Tue, 20 Oct 2015 13:18:59 +0300 Subject: Fix issues with COIN builds MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit -Fix miscellaneous compile errors -Move manual tests to manual folder and enable export of autotests -Added widgets requirement -Fixed autotests -Fixed renderer and controller synchronization in QML case -Treat fallback Mesa as ES2 similar to setting AA_UseSoftwareOpenGL Change-Id: If6619733725d079e339bef16262e5ea1450ab20f Reviewed-by: Tomi Korpipää --- .../QtKinectWrapper/OpenNI/Include/XnPrdNodeInfo.h | 126 +++++++++++++++++++++ 1 file changed, 126 insertions(+) create mode 100644 tests/manual/kinectsurface/QtKinectWrapper/OpenNI/Include/XnPrdNodeInfo.h (limited to 'tests/manual/kinectsurface/QtKinectWrapper/OpenNI/Include/XnPrdNodeInfo.h') diff --git a/tests/manual/kinectsurface/QtKinectWrapper/OpenNI/Include/XnPrdNodeInfo.h b/tests/manual/kinectsurface/QtKinectWrapper/OpenNI/Include/XnPrdNodeInfo.h new file mode 100644 index 00000000..23a081d5 --- /dev/null +++ b/tests/manual/kinectsurface/QtKinectWrapper/OpenNI/Include/XnPrdNodeInfo.h @@ -0,0 +1,126 @@ +/**************************************************************************** +* * +* OpenNI 1.x Alpha * +* Copyright (C) 2011 PrimeSense Ltd. * +* * +* This file is part of OpenNI. * +* * +* OpenNI is free software: you can redistribute it and/or modify * +* it under the terms of the GNU Lesser General Public License as published * +* by the Free Software Foundation, either version 3 of the License, or * +* (at your option) any later version. * +* * +* OpenNI is distributed in the hope that it will be useful, * +* but WITHOUT ANY WARRANTY; without even the implied warranty of * +* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * +* GNU Lesser General Public License for more details. * +* * +* You should have received a copy of the GNU Lesser General Public License * +* along with OpenNI. If not, see . * +* * +****************************************************************************/ +#ifndef __XN_PRD_NODE_INFO_H__ +#define __XN_PRD_NODE_INFO_H__ + +/** + * @ingroup cref + * @defgroup prdnodeinfo Production Node Info + * This page describes the functionality of a production node info object. Each info object + * can represent a possible production node, or an existing one. + * @{ + */ + +//--------------------------------------------------------------------------- +// Includes +//--------------------------------------------------------------------------- +#include + +//--------------------------------------------------------------------------- +// Functions +//--------------------------------------------------------------------------- + + + +/** + * Allocates a node info object, and sets its details. + * + * @param pDescription [in] The description for the new node info object. + * @param strCreationInfo [in] The creation info for the new node info object. + * @param pNeededNodes [in] A list of node info's that are needed by the new node info. + * @param ppNodeInfo [out] A pointer to pointer to the new node info object. + */ +XN_C_API XnStatus XN_C_DECL xnNodeInfoAllocate(const XnProductionNodeDescription* pDescription, const XnChar* strCreationInfo, XnNodeInfoList* pNeededNodes, XnNodeInfo** ppNodeInfo); + +/** + * Frees a node info object + * + * @param pNodeInfo [in] The node info object to free. + */ +XN_C_API void XN_C_DECL xnNodeInfoFree(XnNodeInfo* pNodeInfo); + +/** + * Sets the instance name of the node info object. The name can only be set BEFORE the instance is + * created. + * + * @param pNodeInfo [in] A production node info object. + * @param strInstanceName [in] The name to give to this instance. + */ +XN_C_API XnStatus XN_C_DECL xnNodeInfoSetInstanceName(XnNodeInfo* pNodeInfo, const XnChar* strInstanceName); + +/** + * Gets the description of the production node. + * + * @param pNodeInfo [in] A production node info object. + */ +XN_C_API const XnProductionNodeDescription* XN_C_DECL xnNodeInfoGetDescription(XnNodeInfo* pNodeInfo); + +/** + * Creates a printable representation of the production tree. + * + * @param pNodeInfo [in] A production node info object. + * @param csResult [in] A buffer to be filled with the printable representation. + * @param nSize [in] Size of the buffer. + */ +XN_C_API XnStatus XN_C_DECL xnNodeInfoGetTreeStringRepresentation(XnNodeInfo* pNodeInfo, XnChar* csResult, XnUInt32 nSize); + +/** + * Gets the instance name of the production node. + * + * @param pNodeInfo [in] A production node info object. + */ +XN_C_API const XnChar* XN_C_DECL xnNodeInfoGetInstanceName(XnNodeInfo* pNodeInfo); + +/** + * Gets the creation info of the production node. + * + * @param pNodeInfo [in] A production node info object. + */ +XN_C_API const XnChar* XN_C_DECL xnNodeInfoGetCreationInfo(XnNodeInfo* pNodeInfo); + +/** + * Gets the list of needed nodes of the production node. + * + * @param pNodeInfo [in] A production node info object. + */ +XN_C_API XnNodeInfoList* XN_C_DECL xnNodeInfoGetNeededNodes(XnNodeInfo* pNodeInfo); + +/** + * Gets the handle of the production node. For nodes that weren't created yet, NULL is returned. + * If a handle is returned, it should be released when no longer used by calling @ref xnProductionNodeRelease(). + * + * @param pNodeInfo [in] A production node info object. + */ +XN_C_API XnNodeHandle XN_C_DECL xnNodeInfoGetRefHandle(XnNodeInfo* pNodeInfo); + +XN_C_API XnNodeHandle XN_API_DEPRECATED("Please use xnNodeInfoGetRefHandle() instead") XN_C_DECL xnNodeInfoGetHandle(XnNodeInfo* pNodeInfo); + +/** + * Gets the additional data object attached to the node info object. + * + * @param pNodeInfo [in] A production node info object. + */ +XN_C_API const void* XN_C_DECL xnNodeInfoGetAdditionalData(XnNodeInfo* pNodeInfo); + +/** @} */ + +#endif // __XN_PRD_NODE_INFO_H__ -- cgit v1.2.3