From 98b64cc20f676a167a4d8d5ea29602f8842a6cf4 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Mon, 1 Apr 2013 16:46:06 -0600 Subject: [PATCH] hud: flush/unmap the vertex buffer before drawing MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The VMware svga driver is picky about making sure the VBO is unmapped before drawing. Reviewed-by: Marek Olšák --- src/gallium/auxiliary/hud/hud_context.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/gallium/auxiliary/hud/hud_context.c b/src/gallium/auxiliary/hud/hud_context.c index 60355cabc77..65b82473b83 100644 --- a/src/gallium/auxiliary/hud/hud_context.c +++ b/src/gallium/auxiliary/hud/hud_context.c @@ -476,6 +476,9 @@ hud_draw(struct hud_context *hud, struct pipe_resource *tex) hud_pane_accumulate_vertices(hud, pane); } + /* unmap the uploader's vertex buffer before drawing */ + u_upload_flush(hud->uploader); + /* draw accumulated vertices for background quads */ cso_set_fragment_shader_handle(hud->cso, hud->fs_color);