mirror of
https://bitbucket.org/mfeemster/fractorium.git
synced 2025-07-03 23:05:11 -04:00
--User changes
Allow for setting rendering thread priorities from the command line and final render dialog. Currently only implemented on Windows. Show estimated time left on the final render dialog. Sort palette list by name, instead of by index in the palette file. Sorting can be flipped by clicking the column headers of the palette table. --Code changes Remove unnecessary connect() statement in Variations tab.
This commit is contained in:
@ -157,6 +157,8 @@ public:
|
||||
size_t BytesPerChannel() const;
|
||||
void BytesPerChannel(size_t bytesPerChannel);
|
||||
size_t NumChannels() const;
|
||||
eThreadPriority Priority() const;
|
||||
void Priority(eThreadPriority priority);
|
||||
eInteractiveFilter InteractiveFilter() const;
|
||||
void InteractiveFilter(eInteractiveFilter filter);
|
||||
|
||||
@ -216,6 +218,7 @@ protected:
|
||||
size_t m_LastTemporalSample;
|
||||
size_t m_LastIter;
|
||||
double m_LastIterPercent;
|
||||
eThreadPriority m_Priority;
|
||||
eProcessAction m_ProcessAction;
|
||||
eProcessState m_ProcessState;
|
||||
eInteractiveFilter m_InteractiveFilter;
|
||||
|
Reference in New Issue
Block a user