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>2016-03-05 01:09:05 +0300
committerCampbell Barton <ideasman42@gmail.com>2016-03-05 01:12:07 +0300
commitacebfbb6669b4f0c546068777c7f11146aad3def (patch)
treeb20db009b21a703a4daa5400dbc72e8196e59a78 /source/blender/gpu
parent55137629462d3ca2fb152b56cfe26507bdd2c352 (diff)
Cleanup: unnecessary comma use
Diffstat (limited to 'source/blender/gpu')
-rw-r--r--source/blender/gpu/intern/gpu_compositing.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/gpu/intern/gpu_compositing.c b/source/blender/gpu/intern/gpu_compositing.c
index 79a77d63a44..8516a2d2882 100644
--- a/source/blender/gpu/intern/gpu_compositing.c
+++ b/source/blender/gpu/intern/gpu_compositing.c
@@ -332,7 +332,8 @@ bool GPU_fx_compositor_initialize_passes(
/* scissor is missing when drawing offscreen, in that case, dimensions match exactly. In opposite case
* add one to match viewport dimensions */
if (scissor_rect) {
- w++, h++;
+ w++;
+ h++;
}
fx->num_passes = 0;