mirror of
https://bitbucket.org/mfeemster/fractorium.git
synced 2025-07-18 14:14:53 -04:00
--User changes
-Allow for pausing and resuming of final renders. --Code changes -Only instantiate float version of Palette and PaletteList, no need for double since it's never used. -Allow for FinalRenderDialog to be queried on whether it's currently rendering.
This commit is contained in:
@ -188,6 +188,8 @@ public:
|
||||
void LeaveResize();
|
||||
void Abort();
|
||||
bool Aborted();
|
||||
void Pause(bool pause);
|
||||
bool Paused();
|
||||
bool InRender();
|
||||
bool InFinalAccum();
|
||||
|
||||
@ -203,6 +205,7 @@ protected:
|
||||
bool m_ReclaimOnResize = false;
|
||||
bool m_CurvesSet = false;
|
||||
volatile bool m_Abort = false;
|
||||
volatile bool m_Pause = false;
|
||||
size_t m_SuperRasW;
|
||||
size_t m_SuperRasH;
|
||||
size_t m_SuperSize = 0;
|
||||
|
Reference in New Issue
Block a user