diff --git a/library/PolyVoxCore/include/PolyVoxCore/LowPassFilter.inl b/library/PolyVoxCore/include/PolyVoxCore/LowPassFilter.inl index 21a0091c..a3cb81b1 100644 --- a/library/PolyVoxCore/include/PolyVoxCore/LowPassFilter.inl +++ b/library/PolyVoxCore/include/PolyVoxCore/LowPassFilter.inl @@ -23,6 +23,13 @@ freely, subject to the following restrictions: namespace PolyVox { + /** + * \param pVolSrc + * \param regSrc + * \param[out] pVolDst + * \param regDst + * \param uKernelSize + */ template< typename SrcVolumeType, typename DstVolumeType, typename AccumulationType> LowPassFilter::LowPassFilter(SrcVolumeType* pVolSrc, Region regSrc, DstVolumeType* pVolDst, Region regDst, uint32_t uKernelSize) :m_pVolSrc(pVolSrc) diff --git a/library/PolyVoxCore/include/PolyVoxCore/MeshDecimator.inl b/library/PolyVoxCore/include/PolyVoxCore/MeshDecimator.inl index 211e281b..4a1df584 100644 --- a/library/PolyVoxCore/include/PolyVoxCore/MeshDecimator.inl +++ b/library/PolyVoxCore/include/PolyVoxCore/MeshDecimator.inl @@ -26,7 +26,7 @@ namespace PolyVox //////////////////////////////////////////////////////////////////////////////// /// Builds a MeshDecimator. /// \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. /// \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 diff --git a/library/PolyVoxCore/include/PolyVoxCore/VolumeResampler.inl b/library/PolyVoxCore/include/PolyVoxCore/VolumeResampler.inl index 60763829..9945ec62 100644 --- a/library/PolyVoxCore/include/PolyVoxCore/VolumeResampler.inl +++ b/library/PolyVoxCore/include/PolyVoxCore/VolumeResampler.inl @@ -25,6 +25,12 @@ freely, subject to the following restrictions: namespace PolyVox { + /** + * \param pVolSrc + * \param regSrc + * \param[out] pVolDst + * \param regDst + */ template< typename SrcVolumeType, typename DstVolumeType> VolumeResampler::VolumeResampler(SrcVolumeType* pVolSrc, Region regSrc, DstVolumeType* pVolDst, Region regDst) :m_pVolSrc(pVolSrc)