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-04-23 04:01:30 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-04-23 04:22:22 +0300
commit64b4b719ebd5201d27aa25d7fa2d765eabded9b0 (patch)
treec6e1147f3b81b90193d3acaa0df3f8c5c93db328 /source/blender/imbuf/intern/bmp.c
parentac53291e1ff79144ca41d63b0787bfe04da21677 (diff)
Cleanup: style, use braces for imbuf
Diffstat (limited to 'source/blender/imbuf/intern/bmp.c')
-rw-r--r--source/blender/imbuf/intern/bmp.c18
1 files changed, 12 insertions, 6 deletions
diff --git a/source/blender/imbuf/intern/bmp.c b/source/blender/imbuf/intern/bmp.c
index b43b13ff282..ae3ac624e3b 100644
--- a/source/blender/imbuf/intern/bmp.c
+++ b/source/blender/imbuf/intern/bmp.c
@@ -125,8 +125,9 @@ struct ImBuf *imb_bmp_decode(const unsigned char *mem,
(void)size; /* unused */
- if (checkbmp(mem) == 0)
+ if (checkbmp(mem) == 0) {
return (NULL);
+ }
colorspace_set_default_role(colorspace, IM_MAX_SPACE, COLOR_ROLE_DEFAULT_BYTE);
@@ -310,8 +311,9 @@ int imb_savebmp(struct ImBuf *ibuf, const char *name, int flags)
data = (uchar *)ibuf->rect;
ofile = BLI_fopen(name, "wb");
- if (!ofile)
+ if (!ofile) {
return 0;
+ }
putShortLSB(19778, ofile); /* "BM" */
putIntLSB(bytesize + BMP_FILEHEADER_SIZE + sizeof(infoheader), ofile); /* Total file size */
@@ -335,17 +337,21 @@ int imb_savebmp(struct ImBuf *ibuf, const char *name, int flags)
for (size_t y = 0; y < ibuf->y; y++) {
for (size_t x = 0; x < ibuf->x; x++) {
ptr = (x + y * ibuf->x) * 4;
- if (putc(data[ptr + 2], ofile) == EOF)
+ if (putc(data[ptr + 2], ofile) == EOF) {
return 0;
- if (putc(data[ptr + 1], ofile) == EOF)
+ }
+ if (putc(data[ptr + 1], ofile) == EOF) {
return 0;
- if (putc(data[ptr], ofile) == EOF)
+ }
+ if (putc(data[ptr], ofile) == EOF) {
return 0;
+ }
}
/* add padding here */
for (size_t t = 0; t < extrabytes; t++) {
- if (putc(0, ofile) == EOF)
+ if (putc(0, ofile) == EOF) {
return 0;
+ }
}
}
if (ofile) {