diff --git a/opensubdiv/far/stencilTablesFactory.h b/opensubdiv/far/stencilTablesFactory.h index a756b3d3..ef6ce3c2 100644 --- a/opensubdiv/far/stencilTablesFactory.h +++ b/opensubdiv/far/stencilTablesFactory.h @@ -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 /// diff --git a/opensubdiv/osd/cpuEvalStencilsContext.h b/opensubdiv/osd/cpuEvalStencilsContext.h index 641c929e..658ee1d5 100644 --- a/opensubdiv/osd/cpuEvalStencilsContext.h +++ b/opensubdiv/osd/cpuEvalStencilsContext.h @@ -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 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 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 void BindOutputDerivData( OsdVertexBufferDescriptor const & outputDuDesc, VERTEX_BUFFER *outputDu,