Revert part of rev50719, it's not actually needed and it always

invalidates render result display buffers.
This commit is contained in:
Sergey Sharybin 2012-09-18 11:21:57 +00:00
parent 60e43ebf9c
commit 3069db2216

@ -2588,8 +2588,7 @@ static ImBuf *image_get_render_result(Image *ima, ImageUser *iuser, void **lock_
/* invalidate color managed buffers if render result changed */
BLI_lock_thread(LOCK_COLORMANAGE);
if (ibuf->x != rres.rectx || ibuf->y != rres.recty ||
ibuf->rect_float != rectf || ibuf->rect != rect)
if (ibuf->x != rres.rectx || ibuf->y != rres.recty || ibuf->rect_float != rectf)
{
ibuf->userflags |= IB_DISPLAY_BUFFER_INVALID;
}