From: Christoph Bumiller Date: Mon, 7 Jan 2013 19:18:06 +0000 (+0100) Subject: nvc0: add missing call to map edge flag in push_vbo X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=41e105d5beb78c42993a602cc58d0f990739b088;hp=be75a9373a6d0f9e2ef35ac376a541e60d72d306;p=mesa.git nvc0: add missing call to map edge flag in push_vbo Note: this is a candidate for the 9.0 stable branch. --- diff --git a/src/gallium/drivers/nvc0/nvc0_vbo_translate.c b/src/gallium/drivers/nvc0/nvc0_vbo_translate.c index 42d9e055c71..033a5d05d3e 100644 --- a/src/gallium/drivers/nvc0/nvc0_vbo_translate.c +++ b/src/gallium/drivers/nvc0/nvc0_vbo_translate.c @@ -439,6 +439,9 @@ nvc0_push_vbo(struct nvc0_context *nvc0, const struct pipe_draw_info *info) nvc0_vertex_configure_translate(nvc0, info->index_bias); + if (unlikely(ctx.edgeflag.enabled)) + nvc0_push_map_edgeflag(&ctx, nvc0, info->index_bias); + ctx.prim_restart = info->primitive_restart; ctx.restart_index = info->restart_index;