From: Brian Paul Date: Sat, 25 Feb 2017 02:02:39 +0000 (-0700) Subject: svga: fix MSVC build error after PIPE_CAP_USER_INDEX_BUFFERS removal X-Git-Tag: upstream/17.1.0~1913 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=fcf466383ae281cc35dd5df4e6af9e4e0d811d33;p=platform%2Fupstream%2Fmesa.git svga: fix MSVC build error after PIPE_CAP_USER_INDEX_BUFFERS removal Need to specify the zero for the struct initializer. My earlier test of the patch series was with MinGW, not MSVC. Trivial. --- diff --git a/src/gallium/drivers/svga/svga_pipe_draw.c b/src/gallium/drivers/svga/svga_pipe_draw.c index bbd4430..b9637b2 100644 --- a/src/gallium/drivers/svga/svga_pipe_draw.c +++ b/src/gallium/drivers/svga/svga_pipe_draw.c @@ -196,7 +196,7 @@ svga_draw_vbo(struct pipe_context *pipe, const struct pipe_draw_info *info) goto done; /* Upload a user index buffer. */ - struct pipe_index_buffer ibuffer_saved = {}; + struct pipe_index_buffer ibuffer_saved = {0}; if (info->indexed && svga->curr.ib.user_buffer && !util_save_and_upload_index_buffer(pipe, info, &svga->curr.ib, &ibuffer_saved)) {