Skip to content

Commit

Permalink
Merge pull request #5024 from shun-iwasawa/fix_32bit_preview
Browse files Browse the repository at this point in the history
Fix 32bit preview
  • Loading branch information
RodneyBaker authored Jul 29, 2023
2 parents 9edd160 + 6339655 commit 86d9c5b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion toonz/sources/toonz/previewfxmanager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1079,7 +1079,7 @@ void PreviewFxInstance::doOnRenderRasterCompleted(

/*-- 16bpcで計算された場合、結果をDitheringする --*/
// dither the 16bpc image IF the "30bit display" preference option is OFF
if ((rasA->getPixelSize() == 8 || rasA->getPixelSize() == 16) &&
if (rasA->getPixelSize() == 8 &&
!Preferences::instance()->is30bitDisplayEnabled()) // render in 64 bits
{
TRaster32P auxA(rasA->getLx(), rasA->getLy());
Expand Down

0 comments on commit 86d9c5b

Please sign in to comment.