Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2019-03-15 00:53:22 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-03-15 01:54:30 +0300
commit35b78d9807c49ba37e038eda85c672c72dee0247 (patch)
treea081042c85b98d0ac9116c0c4ba99ded6ae5de84 /source/blender/editors/gpencil/annotate_draw.c
parent395a0acdb88338b9790ecefd142f4010df6b955d (diff)
Cleanup: indentation, wrapping
Mostly functions wrapping args, not confirming to our style guide.
Diffstat (limited to 'source/blender/editors/gpencil/annotate_draw.c')
-rw-r--r--source/blender/editors/gpencil/annotate_draw.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/source/blender/editors/gpencil/annotate_draw.c b/source/blender/editors/gpencil/annotate_draw.c
index f30b3a45971..3d70a7f6843 100644
--- a/source/blender/editors/gpencil/annotate_draw.c
+++ b/source/blender/editors/gpencil/annotate_draw.c
@@ -717,8 +717,8 @@ static void gp_draw_strokes_edit(
/* ----- General Drawing ------ */
/* draw onion-skinning for a layer */
static void gp_draw_onionskins(
- bGPdata *gpd, bGPDlayer *gpl, bGPDframe *gpf, int offsx, int offsy, int winx, int winy,
- int UNUSED(cfra), int dflag)
+ bGPdata *gpd, bGPDlayer *gpl, bGPDframe *gpf, int offsx, int offsy, int winx, int winy,
+ int UNUSED(cfra), int dflag)
{
const float alpha = 1.0f;
float color[4];
@@ -738,8 +738,8 @@ static void gp_draw_onionskins(
fac = 1.0f - ((float)(gpf->framenum - gf->framenum) / (float)(gpl->gstep + 1));
color[3] = alpha * fac * 0.66f;
gp_draw_strokes(
- gpd, gpl, gf, offsx, offsy, winx, winy, dflag,
- gpl->thickness, color);
+ gpd, gpl, gf, offsx, offsy, winx, winy, dflag,
+ gpl->thickness, color);
}
else
break;
@@ -750,8 +750,8 @@ static void gp_draw_onionskins(
if (gpf->prev) {
color[3] = (alpha / 7);
gp_draw_strokes(
- gpd, gpl, gpf->prev, offsx, offsy, winx, winy, dflag,
- gpl->thickness, color);
+ gpd, gpl, gpf->prev, offsx, offsy, winx, winy, dflag,
+ gpl->thickness, color);
}
}
else {
@@ -774,8 +774,8 @@ static void gp_draw_onionskins(
fac = 1.0f - ((float)(gf->framenum - gpf->framenum) / (float)(gpl->gstep_next + 1));
color[3] = alpha * fac * 0.66f;
gp_draw_strokes(
- gpd, gpl, gf, offsx, offsy, winx, winy, dflag,
- gpl->thickness, color);
+ gpd, gpl, gf, offsx, offsy, winx, winy, dflag,
+ gpl->thickness, color);
}
else
break;
@@ -786,8 +786,8 @@ static void gp_draw_onionskins(
if (gpf->next) {
color[3] = (alpha / 4);
gp_draw_strokes(
- gpd, gpl, gpf->next, offsx, offsy, winx, winy, dflag,
- gpl->thickness, color);
+ gpd, gpl, gpf->next, offsx, offsy, winx, winy, dflag,
+ gpl->thickness, color);
}
}
else {