From: Eric Anholt Date: Fri, 20 Oct 2017 19:32:36 +0000 (-0700) Subject: broadcom/vc5: Fix pasteo that broke vertex texturing. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=0e6fee7328c7faf298916f419dea7ec78ec49e9e;p=mesa.git broadcom/vc5: Fix pasteo that broke vertex texturing. We weren't ever filling in the texture state record, so we'd dereference NULL from the shader. --- diff --git a/src/gallium/drivers/vc5/vc5_emit.c b/src/gallium/drivers/vc5/vc5_emit.c index 9b82ff9071b..3cb44feff9f 100644 --- a/src/gallium/drivers/vc5/vc5_emit.c +++ b/src/gallium/drivers/vc5/vc5_emit.c @@ -408,7 +408,7 @@ vc5_emit_state(struct pipe_context *pctx) emit_textures(vc5, &vc5->fragtex); if (vc5->dirty & VC5_DIRTY_VERTTEX) - emit_textures(vc5, &vc5->fragtex); + emit_textures(vc5, &vc5->verttex); if (vc5->dirty & VC5_DIRTY_FLAT_SHADE_FLAGS) { /* XXX: Need to handle more than 24 entries. */