DRW: Fix negative scale object drawing.

This commit is contained in:
2018-02-28 01:29:16 +01:00
parent 0df21e2504
commit 74a22c8a8a

View File

@@ -253,7 +253,7 @@ static void drw_call_set_matrices(DRWCallState *state, float (*obmat)[4], ID *ob
copy_m4_m4(state->model, obmat);
if (is_negative_m4(state->model)) {
state->matflag |= DRW_CALL_NEGSCALE;
state->flag |= DRW_CALL_NEGSCALE;
}
}
else {