mirror of
https://bitbucket.org/mfeemster/fractorium.git
synced 2025-07-02 06:16:17 -04:00
--0.9.9.3 Release
This commit is contained in:
@ -40,7 +40,7 @@ static void sincos(float x, float* s, float* c)
|
||||
|
||||
namespace EmberNs
|
||||
{
|
||||
#define EMBER_VERSION "0.9.9.2"
|
||||
#define EMBER_VERSION "0.9.9.3"
|
||||
#define EPS6 T(1e-6)
|
||||
#define EPS std::numeric_limits<T>::epsilon()//Apoplugin.h uses -20, but it's more mathematically correct to do it this way.
|
||||
#define ISAAC_SIZE 4
|
||||
|
@ -3918,7 +3918,7 @@ template <typename T>
|
||||
class EMBER_API PostSmartcropVariation : public ParametricVariation<T>
|
||||
{
|
||||
public:
|
||||
PostSmartcropVariation(T weight = 1.0) : ParametricVariation<T>("post_smartcrop", eVariationId::VAR_POST_SMARTCROP, weight, true)
|
||||
PostSmartcropVariation(T weight = 1.0) : ParametricVariation<T>("post_smartcrop", eVariationId::VAR_POST_SMARTCROP, weight)
|
||||
{
|
||||
m_AssignType = eVariationAssignType::ASSIGNTYPE_SET;
|
||||
m_VarType = eVariationType::VARTYPE_POST;//Very special usage, post only.
|
||||
|
@ -1249,7 +1249,7 @@ public:
|
||||
|
||||
virtual vector<string> OpenCLGlobalFuncNames() const override
|
||||
{
|
||||
return vector<string> { "Zeps", "SimplexNoise3D", "PerlinNoise3D" };
|
||||
return vector<string> { "Zeps", "Sqr", "SimplexNoise3D", "PerlinNoise3D" };
|
||||
}
|
||||
|
||||
virtual vector<string> OpenCLGlobalDataNames() const override
|
||||
|
Reference in New Issue
Block a user