Fix Doxygen comments

This commit is contained in:
Manuel Kraemer 2013-09-13 09:28:20 -07:00
parent 0172d47a59
commit cf61fbc08a
2 changed files with 14 additions and 10 deletions

View File

@ -306,7 +306,7 @@ public:
///
/// @param other Source stencil to add the weights from
///
static void Add( float * dest, FarVertexStencil const * other );
static void Add( float * dst, FarVertexStencil const * other );
/// \brief Subtracts the coefficients from a stencil dst = (a - b)
///
@ -336,7 +336,7 @@ public:
///
/// @param val Value to weigh 'other' with
///
static void AddScaled( float * dest, FarVertexStencil const * other, float val );
static void AddScaled( float * dst, FarVertexStencil const * other, float val );
/// \brief Adds and scales the coefficients of the stencil: this += other * val
///

View File

@ -54,9 +54,10 @@ public:
/// Binding ensures that data buffers are properly inter-operated between
/// Contexts and Controllers operating across multiple devices.
///
/// @param controlDataDesc
/// @param controlDataDesc A buffer descriptor for the control vertices
/// data
///
/// @param controlData
/// @param controlData A buffer for the control vertices data
///
template<class VERTEX_BUFFER>
void BindControlData(OsdVertexBufferDescriptor const & controlDataDesc, VERTEX_BUFFER *controlData ) {
@ -71,9 +72,10 @@ public:
/// Binding ensures that data buffers are properly inter-operated between
/// Contexts and Controllers operating across multiple devices.
///
/// @param outputDataDesc
/// @param outputDataDesc A buffer descriptor for the output vertex
/// interpolated data
///
/// @param outputData
/// @param outputData A buffer for vertex interpolated data
///
template<class VERTEX_BUFFER>
void BindOutputData( OsdVertexBufferDescriptor const & outputDataDesc, VERTEX_BUFFER *outputData ) {
@ -87,13 +89,15 @@ public:
/// Binding ensures that data buffers are properly inter-operated between
/// Contexts and Controllers operating across multiple devices.
///
/// @param controlDataDesc
/// @param outputDuDesc A buffer descriptor for the output U derivative
/// vertex data
///
/// @param controlData
/// @param outputDu A buffer for the output U derivative data
///
/// @param outputDataDesc
/// @param outputDvDesc A buffer descriptor for the output V derivative
/// vertex data
///
/// @param outputData
/// @param outputDv A buffer for the output V derivative data
///
template<class VERTEX_BUFFER>
void BindOutputDerivData( OsdVertexBufferDescriptor const & outputDuDesc, VERTEX_BUFFER *outputDu,