Skip to content

Commit

Permalink
Merge pull request #4947 from shun-iwasawa/fix_soapbubblefx
Browse files Browse the repository at this point in the history
Fix Soapbubble fx
  • Loading branch information
RodneyBaker authored Jun 12, 2023
2 parents 68c066a + 9c774a9 commit c3f51a9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion toonz/sources/stdfx/iwa_soapbubblefx.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,8 @@ void Iwa_SoapBubbleFx::doCompute(TTile& tile, double frame,
allocatedRasList.append(bubbleColor_ras);
float3* bubbleColor_p = (float3*)bubbleColor_ras->getRawData();
if (m_renderMode->getValue() == RENDER_MODE_BUBBLE)
calcBubbleMap(bubbleColor_p, frame, tile.getRaster()->isLinear(), true);
calcBubbleMap(bubbleColor_p, frame, tile.getRaster()->isLinear(),
settings.m_colorSpaceGamma, true);

if (checkCancelAndReleaseRaster(allocatedRasList, tile, settings)) return;

Expand Down

0 comments on commit c3f51a9

Please sign in to comment.