Question: why does the new full size darkroom preview trigger a recompute when zooming/panning? #813
Answered
by
aurelienpierre
pedrorrodriguez
asked this question in
Q&A
|
I thought it's slow because it's rendered at full size. @aurelienpierre unsure if this is a bug or intended behavior |
Answered by
aurelienpierre
Apr 29, 2026
Replies: 1 comment 16 replies
|
Full size darkroom preview ? What do you mean ? |
16 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The pipeline is not wired like this at the moment. To introduce this new full-res option, I already had to track and fix a silent 12-years-old bug into the scaling method, on top of the one I had already fixed when introducing inital scale/full-res early pipeline.
So, one harmful architectural change at a time. Introducing base buffer broke IOP order and corrupted histories for no valid reason, whereas it has no connection to it. It also introduced a cropping frame mismatch between export and darkroom. The lesson here is to proceed carefully with large changes.
Right now, initial scale handles scaling to display resolution and cropping the ROI, and final scale handles scaling only and onl…