Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2007-07-28 18:39:30 +0400
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2007-07-28 18:39:30 +0400
commiteb8ee6f5686255ed270cd84376af905b359d9b1d (patch)
tree7fa93b95f3655cec62f56aa765468d7fa7eebc83 /intern/opennl/extern
parent373f91c8b169a4f937ba0a2e53c3646e75461ca6 (diff)
Updates to opennl for mesh laplacian matrix building, to make matrix
building with random access work together with variable locking.
Diffstat (limited to 'intern/opennl/extern')
-rw-r--r--intern/opennl/extern/ONL_opennl.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/intern/opennl/extern/ONL_opennl.h b/intern/opennl/extern/ONL_opennl.h
index 345cf0dc717..7f501629290 100644
--- a/intern/opennl/extern/ONL_opennl.h
+++ b/intern/opennl/extern/ONL_opennl.h
@@ -131,10 +131,12 @@ void nlBegin(NLenum primitive);
void nlEnd(NLenum primitive);
void nlCoefficient(NLuint index, NLfloat value);
-/* Setting random elements matrix/vector - not for least squares! */
+/* Setting random elements matrix/vector - not supported for
+ least squares! */
void nlMatrixAdd(NLuint row, NLuint col, NLfloat value);
void nlRightHandSideAdd(NLuint index, NLfloat value);
+void nlRightHandSideSet(NLuint index, NLfloat value);
/* Solve */