Merge branch 'master' into blender2.8
Stupid git handles merges terribly when there are conflicts and branch is modified buring merge process... :((((
This commit is contained in:
@@ -129,6 +129,7 @@
|
||||
# define expf(x) native_exp(((float)(x)))
|
||||
# define sqrtf(x) native_sqrt(((float)(x)))
|
||||
# define logf(x) native_log(((float)(x)))
|
||||
# define rcp(x) native_recip(x)
|
||||
#else
|
||||
# define sinf(x) sin(((float)(x)))
|
||||
# define cosf(x) cos(((float)(x)))
|
||||
@@ -136,6 +137,7 @@
|
||||
# define expf(x) exp(((float)(x)))
|
||||
# define sqrtf(x) sqrt(((float)(x)))
|
||||
# define logf(x) log(((float)(x)))
|
||||
# define rcp(x) recip(x))
|
||||
#endif
|
||||
|
||||
/* data lookup defines */
|
||||
|
||||
@@ -1659,13 +1659,13 @@ void BKE_rigidbody_do_simulation(struct EvaluationContext *eval_ctx, Scene *scen
|
||||
# pragma GCC diagnostic ignored "-Wunused-parameter"
|
||||
#endif
|
||||
|
||||
struct RigidBodyOb *BKE_rigidbody_copy_object(const Object *ob) { return NULL; }
|
||||
struct RigidBodyCon *BKE_rigidbody_copy_constraint(const Object *ob) { return NULL; }
|
||||
struct RigidBodyOb *BKE_rigidbody_copy_object(const Object *ob, const int flag) { return NULL; }
|
||||
struct RigidBodyCon *BKE_rigidbody_copy_constraint(const Object *ob, const int flag) { return NULL; }
|
||||
void BKE_rigidbody_validate_sim_world(Scene *scene, RigidBodyWorld *rbw, bool rebuild) {}
|
||||
void BKE_rigidbody_calc_volume(Object *ob, float *r_vol) { if (r_vol) *r_vol = 0.0f; }
|
||||
void BKE_rigidbody_calc_center_of_mass(Object *ob, float r_center[3]) { zero_v3(r_center); }
|
||||
struct RigidBodyWorld *BKE_rigidbody_create_world(Scene *scene) { return NULL; }
|
||||
struct RigidBodyWorld *BKE_rigidbody_world_copy(RigidBodyWorld *rbw) { return NULL; }
|
||||
struct RigidBodyWorld *BKE_rigidbody_world_copy(RigidBodyWorld *rbw, const int flag) { return NULL; }
|
||||
void BKE_rigidbody_world_groups_relink(struct RigidBodyWorld *rbw) {}
|
||||
void BKE_rigidbody_world_id_loop(struct RigidBodyWorld *rbw, RigidbodyWorldIDFunc func, void *userdata) {}
|
||||
struct RigidBodyOb *BKE_rigidbody_create_object(Scene *scene, Object *ob, short type) { return NULL; }
|
||||
|
||||
@@ -365,7 +365,7 @@ enum {
|
||||
LIB_TAG_ID_RECALC_ALL = (LIB_TAG_ID_RECALC | LIB_TAG_ID_RECALC_DATA),
|
||||
|
||||
/* The datablock is a copy-on-write version. */
|
||||
LIB_TAG_COPY_ON_WRITE = (1 << 15),
|
||||
LIB_TAG_COPY_ON_WRITE = 1 << 15,
|
||||
|
||||
/* RESET_NEVER tag datablock for freeing etc. behavior (usually set when copying real one into temp/runtime one). */
|
||||
LIB_TAG_NO_MAIN = 1 << 16, /* Datablock is not listed in Main database. */
|
||||
|
||||
Reference in New Issue
Block a user