git-svn-id: https://synfig.svn.sourceforge.net/svnroot/synfig@2180
1f10aa63-cdf2-0310-b900-
c93c546f37ac
// if we have lots of pixels to render and the tile renderer isn't disabled, use it
int div;
div = low_resolution ? low_res_pixel_size : 1;
- if (w*h > 240*div*135*div && !getenv("SYNFIG_DISABLE_TILE_RENDER"))
+ if ((w*h > 240*div*135*div && !getenv("SYNFIG_DISABLE_TILE_RENDER")) || getenv("SYNFIG_FORCE_TILE_RENDER"))
{
// do a tile render
handle<WorkAreaTarget> trgt(new class WorkAreaTarget(this,w,h));