GPencil: Fix compiler warnings after previous commit
These warnings were not detected by Windows compiler as the Linux compiler does.
This commit is contained in:
@@ -1285,7 +1285,7 @@ static void gpencil_stroke_from_buffer(tGPDfill *tgpf)
|
||||
}
|
||||
|
||||
/* If camera view or view projection, reproject flat to view to avoid perspective effect. */
|
||||
if ((!is_depth) && ((align_flag & GP_PROJECT_VIEWSPACE) && is_lock_axis_view) || is_camera) {
|
||||
if ((!is_depth) && (((align_flag & GP_PROJECT_VIEWSPACE) && is_lock_axis_view) || is_camera)) {
|
||||
ED_gpencil_project_stroke_to_view(tgpf->C, tgpf->gpl, gps);
|
||||
}
|
||||
|
||||
|
||||
@@ -1085,7 +1085,7 @@ static void gpencil_stroke_newfrombuffer(tGPsdata *p)
|
||||
}
|
||||
|
||||
/* If camera view or view projection, reproject flat to view to avoid perspective effect. */
|
||||
if ((!is_depth) && ((align_flag & GP_PROJECT_VIEWSPACE) && is_lock_axis_view) || is_camera) {
|
||||
if ((!is_depth) && (((align_flag & GP_PROJECT_VIEWSPACE) && is_lock_axis_view) || is_camera)) {
|
||||
ED_gpencil_project_stroke_to_view(p->C, p->gpl, gps);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1078,7 +1078,7 @@ static void gpencil_primitive_update_strokes(bContext *C, tGPDprimitive *tgpi)
|
||||
}
|
||||
|
||||
/* If camera view or view projection, reproject flat to view to avoid perspective effect. */
|
||||
if ((!is_depth) && ((align_flag & GP_PROJECT_VIEWSPACE) && is_lock_axis_view) || is_camera) {
|
||||
if ((!is_depth) && (((align_flag & GP_PROJECT_VIEWSPACE) && is_lock_axis_view) || is_camera)) {
|
||||
ED_gpencil_project_stroke_to_view(C, tgpi->gpl, gps);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user