mirror of
https://bitbucket.org/mfeemster/fractorium.git
synced 2025-07-12 03:04:51 -04:00
0.4.0.7 Beta 07/26/2014
0.4.0.7 Beta 07/26/2014 --User Changes Color code xforms like Apo does. Change other aspects of xform color drawing. Add option to invert the Y axis to both the options final render dialogs. Coordinate Y axis setting with preview renders. Add option to show all xforms when dragging. Previously, only the current one was shown. Make final render dialog appear in the middle of the screen. Immediately draw yellow selection dot on mouse down. --Bug Fixes Resize final render dialog vertically if it's taller than the 90% of the desktop area.
This commit is contained in:
@ -7,9 +7,11 @@
|
||||
/// </summary>
|
||||
|
||||
#define EARLYCLIP "render/earlyclip"
|
||||
#define YAXISUP "render/yaxisup"
|
||||
#define TRANSPARENCY "render/transparency"
|
||||
#define OPENCL "render/opencl"
|
||||
#define DOUBLEPRECISION "render/dp64"
|
||||
#define SHOWALLXFORMS "render/dragshowallxforms"
|
||||
#define PLATFORMINDEX "render/platformindex"
|
||||
#define DEVICEINDEX "render/deviceindex"
|
||||
#define THREADCOUNT "render/threadcount"
|
||||
@ -19,6 +21,7 @@
|
||||
#define OPENCLSUBBATCH "render/openclsubbatch"
|
||||
|
||||
#define FINALEARLYCLIP "finalrender/earlyclip"
|
||||
#define FINALYAXISUP "finalrender/finalyaxisup"
|
||||
#define FINALTRANSPARENCY "finalrender/transparency"
|
||||
#define FINALOPENCL "finalrender/opencl"
|
||||
#define FINALDOUBLEPRECISION "finalrender/dp64"
|
||||
@ -69,6 +72,9 @@ public:
|
||||
|
||||
bool EarlyClip();
|
||||
void EarlyClip(bool b);
|
||||
|
||||
bool YAxisUp();
|
||||
void YAxisUp(bool b);
|
||||
|
||||
bool Transparency();
|
||||
void Transparency(bool b);
|
||||
@ -79,6 +85,9 @@ public:
|
||||
bool Double();
|
||||
void Double(bool b);
|
||||
|
||||
bool ShowAllXforms();
|
||||
void ShowAllXforms(bool b);
|
||||
|
||||
unsigned int PlatformIndex();
|
||||
void PlatformIndex(unsigned int b);
|
||||
|
||||
@ -102,6 +111,9 @@ public:
|
||||
|
||||
bool FinalEarlyClip();
|
||||
void FinalEarlyClip(bool b);
|
||||
|
||||
bool FinalYAxisUp();
|
||||
void FinalYAxisUp(bool b);
|
||||
|
||||
bool FinalTransparency();
|
||||
void FinalTransparency(bool b);
|
||||
|
Reference in New Issue
Block a user