Add some [out] parameter documentation
This commit is contained in:
		| @@ -23,6 +23,13 @@ freely, subject to the following restrictions: | |||||||
|  |  | ||||||
| namespace PolyVox | namespace PolyVox | ||||||
| { | { | ||||||
|  | 	/** | ||||||
|  | 	 * \param pVolSrc | ||||||
|  | 	 * \param regSrc | ||||||
|  | 	 * \param[out] pVolDst | ||||||
|  | 	 * \param regDst | ||||||
|  | 	 * \param uKernelSize | ||||||
|  | 	 */ | ||||||
| 	template< typename SrcVolumeType, typename DstVolumeType, typename AccumulationType> | 	template< typename SrcVolumeType, typename DstVolumeType, typename AccumulationType> | ||||||
| 	LowPassFilter<SrcVolumeType, DstVolumeType, AccumulationType>::LowPassFilter(SrcVolumeType* pVolSrc, Region regSrc, DstVolumeType* pVolDst, Region regDst, uint32_t uKernelSize) | 	LowPassFilter<SrcVolumeType, DstVolumeType, AccumulationType>::LowPassFilter(SrcVolumeType* pVolSrc, Region regSrc, DstVolumeType* pVolDst, Region regDst, uint32_t uKernelSize) | ||||||
| 		:m_pVolSrc(pVolSrc) | 		:m_pVolSrc(pVolSrc) | ||||||
|   | |||||||
| @@ -26,7 +26,7 @@ namespace PolyVox | |||||||
| 	//////////////////////////////////////////////////////////////////////////////// | 	//////////////////////////////////////////////////////////////////////////////// | ||||||
| 	/// Builds a MeshDecimator. | 	/// Builds a MeshDecimator. | ||||||
| 	/// \param pInputMesh A pointer to the mesh to be decimated. | 	/// \param pInputMesh A pointer to the mesh to be decimated. | ||||||
| 	/// \param pOutputMesh A pointer to where the result should be stored. Any existing | 	/// \param[out] pOutputMesh A pointer to where the result should be stored. Any existing | ||||||
| 	/// contents will be deleted. | 	/// contents will be deleted. | ||||||
| 	/// \param fEdgeCollapseThreshold This is only use in the case of a Marching Cubes | 	/// \param fEdgeCollapseThreshold This is only use in the case of a Marching Cubes | ||||||
| 	/// surface and controls how close two normals must be to collapse. The dot product | 	/// surface and controls how close two normals must be to collapse. The dot product | ||||||
|   | |||||||
| @@ -25,6 +25,12 @@ freely, subject to the following restrictions: | |||||||
|  |  | ||||||
| namespace PolyVox | namespace PolyVox | ||||||
| { | { | ||||||
|  | 	/** | ||||||
|  | 	 * \param pVolSrc | ||||||
|  | 	 * \param regSrc | ||||||
|  | 	 * \param[out] pVolDst | ||||||
|  | 	 * \param regDst | ||||||
|  | 	 */ | ||||||
| 	template< typename SrcVolumeType, typename DstVolumeType> | 	template< typename SrcVolumeType, typename DstVolumeType> | ||||||
| 	VolumeResampler<SrcVolumeType, DstVolumeType>::VolumeResampler(SrcVolumeType* pVolSrc, Region regSrc, DstVolumeType* pVolDst, Region regDst) | 	VolumeResampler<SrcVolumeType, DstVolumeType>::VolumeResampler(SrcVolumeType* pVolSrc, Region regSrc, DstVolumeType* pVolDst, Region regDst) | ||||||
| 		:m_pVolSrc(pVolSrc) | 		:m_pVolSrc(pVolSrc) | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user