mirror of
https://bitbucket.org/mfeemster/fractorium.git
synced 2025-07-07 00:34:50 -04:00
export raw histogram data
This commit is contained in:
@ -374,6 +374,40 @@ void RendererBase::ReclaimOnResize(bool reclaimOnResize)
|
||||
ChangeVal([&] { m_ReclaimOnResize = reclaimOnResize; }, eProcessAction::FULL_RENDER);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Get whether to output raw histogram values instead of gamma corrected
|
||||
/// colours.
|
||||
/// Default: false.
|
||||
/// </summary>
|
||||
/// <returns>True if raw, else false.</returns>
|
||||
bool RendererBase::RawHistogram() const { return m_RawHistogram; }
|
||||
|
||||
/// <summary>
|
||||
/// Set whether to output raw histogram values instead of gamma corrected
|
||||
/// colours.
|
||||
/// </summary>
|
||||
/// <param name="rawHistogram">True if raw, else false.</param>
|
||||
void RendererBase::RawHistogram(bool rawHistogram)
|
||||
{
|
||||
ChangeVal([&] { m_RawHistogram = rawHistogram; }, eProcessAction::ACCUM_ONLY);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Get whether to output raw histogram values before density filtering.
|
||||
/// Default: false.
|
||||
/// </summary>
|
||||
/// <returns>True if raw, else false.</returns>
|
||||
bool RendererBase::RawHistogramPreDensity() const { return m_RawHistogramPreDensity; }
|
||||
|
||||
/// <summary>
|
||||
/// Set whether to output raw histogram values before density filtering.
|
||||
/// </summary>
|
||||
/// <param name="rawHistogram">True if pre density, else false.</param>
|
||||
void RendererBase::RawHistogramPreDensity(bool rawHistogramPreDensity)
|
||||
{
|
||||
ChangeVal([&] { m_RawHistogramPreDensity = rawHistogramPreDensity; }, eProcessAction::ACCUM_ONLY);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Set the callback object.
|
||||
/// </summary>
|
||||
|
Reference in New Issue
Block a user