mirror of
https://bitbucket.org/mfeemster/fractorium.git
synced 2025-07-17 13:45:00 -04:00
--User changes
-Add two new variations, hyperbolic and hypershift2. -Allow for animating final xforms. -More detailed diagnostics when any action in the OpenCL renderer fails. -Allow for creating an OpenCL renderer which does not share a texture with the main window, and instead manually copies its final output image from GPU to CPU then back to GPU. --Bug fixes -Text was not properly being copied out of the Info | Bounds text box. --Code changes -Remove Renderer::AccumulatorToFinalImage(v4F* pixels, size_t finalOffset), it's no longer needed or makes sense. -Controllers no longer keep track of shared status, it's kept inside the renderers. -Make getter functions in FractoriumOptionsDialog be public.
This commit is contained in:
@ -197,6 +197,8 @@ enum class eVariationId : et
|
||||
VAR_HOLE ,
|
||||
VAR_HORSESHOE ,
|
||||
VAR_HYPERBOLIC ,
|
||||
VAR_HYPERCROP ,
|
||||
VAR_HYPERSHIFT2 ,
|
||||
VAR_HYPERTILE ,
|
||||
VAR_HYPERTILE1 ,
|
||||
VAR_HYPERTILE2 ,
|
||||
@ -540,6 +542,8 @@ enum class eVariationId : et
|
||||
VAR_PRE_HOLE,
|
||||
VAR_PRE_HORSESHOE,
|
||||
VAR_PRE_HYPERBOLIC,
|
||||
VAR_PRE_HYPERCROP,
|
||||
VAR_PRE_HYPERSHIFT2,
|
||||
VAR_PRE_HYPERTILE,
|
||||
VAR_PRE_HYPERTILE1,
|
||||
VAR_PRE_HYPERTILE2,
|
||||
@ -883,6 +887,8 @@ enum class eVariationId : et
|
||||
VAR_POST_HOLE,
|
||||
VAR_POST_HORSESHOE,
|
||||
VAR_POST_HYPERBOLIC,
|
||||
VAR_POST_HYPERCROP,
|
||||
VAR_POST_HYPERSHIFT2,
|
||||
VAR_POST_HYPERTILE,
|
||||
VAR_POST_HYPERTILE1,
|
||||
VAR_POST_HYPERTILE2,
|
||||
|
Reference in New Issue
Block a user