evas-gl-common: Fix misleading indentation

gcc reports that the 'else' here does not guard the latter
statement...seems like a cause of some missing parens so fix.

Signed-off-by: Chris Michael <cp.michael@samsung.com>
This commit is contained in:
Chris Michael 2017-02-13 10:31:59 -05:00
parent 7ce1a1467b
commit b16c961680
1 changed files with 6 additions and 3 deletions

View File

@ -1340,9 +1340,12 @@ _surface_buffers_allocate(void *eng_data EINA_UNUSED, EVGL_Surface *sfc, int w,
} }
else else
#endif #endif
_renderbuffer_allocate(sfc->depth_stencil_buf, sfc->depth_stencil_fmt, {
w, h, sfc->msaa_samples); _renderbuffer_allocate(sfc->depth_stencil_buf,
sfc->buffer_mem[3] = w * h * 4; sfc->depth_stencil_fmt, w, h,
sfc->msaa_samples);
sfc->buffer_mem[3] = w * h * 4;
}
} }
else else
{ {