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:
authorSergey Sharybin <sergey.vfx@gmail.com>2012-05-23 20:19:04 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2012-05-23 20:19:04 +0400
commit1cee8d1f1dde5616f5574b504f042689af7f263d (patch)
tree139d4769cdd21f43eaa5f1ca5966dd29aafd52c6 /source/blender
parent28002edb6bf295d7d58c71cc402fd86d260faf2f (diff)
Movie clip: remove workaround for #27997
it's not actually helps, but only confuses system when using openexr movie clips.
Diffstat (limited to 'source/blender')
-rw-r--r--source/blender/blenkernel/intern/movieclip.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/source/blender/blenkernel/intern/movieclip.c b/source/blender/blenkernel/intern/movieclip.c
index 5dcec603b91..ccf64639967 100644
--- a/source/blender/blenkernel/intern/movieclip.c
+++ b/source/blender/blenkernel/intern/movieclip.c
@@ -540,10 +540,6 @@ static ImBuf *get_undistorted_ibuf(MovieClip *clip, struct MovieDistortion *dist
{
ImBuf *undistibuf;
- /* XXX: because of #27997 do not use float buffers to undistort,
- * otherwise, undistorted proxy can be darker than it should */
- imb_freerectfloatImBuf(ibuf);
-
if (distortion)
undistibuf = BKE_tracking_distortion_exec(distortion, &clip->tracking, ibuf, ibuf->x, ibuf->y, 0.0f, 1);
else