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:
Diffstat (limited to 'source/blender/imbuf/intern/antialias.c')
-rw-r--r--source/blender/imbuf/intern/antialias.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/source/blender/imbuf/intern/antialias.c b/source/blender/imbuf/intern/antialias.c
index 48384c51915..6c261eb7750 100644
--- a/source/blender/imbuf/intern/antialias.c
+++ b/source/blender/imbuf/intern/antialias.c
@@ -98,7 +98,8 @@ static ListBase * scanimage(struct ImBuf * ibuf, int dir)
step = 1; nextline = ibuf->x;
pixels = ibuf->x; lines = ibuf->y;
break;
- case 'v':
+/* case 'v': changed so assured values for step etc.. */
+ default:
step = ibuf->x; nextline = 1;
pixels = ibuf->y; lines = ibuf->x;
}
@@ -233,7 +234,8 @@ static void filterimage(struct ImBuf * ibuf, struct ImBuf * cbuf, ListBase * lis
step = 1; nextline = ibuf->x;
pixels = ibuf->x; lines = ibuf->y;
break;
- case 'v':
+/* case 'v': changed so have values */
+ default:
step = ibuf->x; nextline = 1;
pixels = ibuf->y; lines = ibuf->x;
}