evas-software: Fix call to evas_software_xcb_outbuf_setup function

Summary: Seems we were missing a comma here and this was causing a
compile break.

@fix

Signed-off-by: Chris Michael <cp.michael@samsung.com>
This commit is contained in:
Chris Michael 2015-01-27 10:52:53 -05:00
parent 5987b1c702
commit e203b32171
1 changed files with 2 additions and 1 deletions

View File

@ -243,7 +243,8 @@ _output_xcb_setup(int w, int h, int rot, xcb_connection_t *conn,
evas_software_xcb_color_init();
evas_software_xcb_outbuf_init();
ob = evas_software_xcb_outbuf_setup(w, h, rot, OUTBUF_DEPTH_INHERIT, conn
ob =
evas_software_xcb_outbuf_setup(w, h, rot, OUTBUF_DEPTH_INHERIT, conn,
screen, draw, vis, cmap, depth,
grayscale, max_colors, mask,
shape_dither, destination_alpha);