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>2010-04-26 16:50:48 +0400
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2010-04-26 16:50:48 +0400
commita547e91d41c566f15d0aeb15841414f56723f6e5 (patch)
treeac84d08f783632e67eb571a06f1c2e792c7597d2 /source/blender/blenlib/intern
parentf39163acd703d3e2a15cc07670d284ade1556ebe (diff)
Two bugfixes from the render branch:
* Fix for FSA update while rendering fix, should set float rect to NULL. * Fix for irradiance cache mutex unlock that got lost in code changes.
Diffstat (limited to 'source/blender/blenlib/intern')
-rw-r--r--source/blender/blenlib/intern/threads.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/blenlib/intern/threads.c b/source/blender/blenlib/intern/threads.c
index c6ad6592268..c63ceb1e5b0 100644
--- a/source/blender/blenlib/intern/threads.c
+++ b/source/blender/blenlib/intern/threads.c
@@ -359,6 +359,8 @@ void BLI_unlock_thread(int type)
pthread_mutex_unlock(&_viewer_lock);
else if(type==LOCK_CUSTOM1)
pthread_mutex_unlock(&_custom1_lock);
+ else if(type==LOCK_RCACHE)
+ pthread_mutex_unlock(&_rcache_lock);
else if(type==LOCK_OPENGL)
pthread_mutex_unlock(&_opengl_lock);
}