asahi: fix vbo dirty track

Signed-off-by: Alyssa Rosenzweig <alyssa@rosenzweig.io>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/27616>
This commit is contained in:
Alyssa Rosenzweig 2024-01-21 11:30:50 -04:00 committed by Marge Bot
parent 668bf461b1
commit 5982ae9025

View file

@ -5064,7 +5064,7 @@ agx_draw_vbo(struct pipe_context *pctx, const struct pipe_draw_info *info,
agx_update_descriptors(batch, ctx->gs, PIPE_SHADER_GEOMETRY);
agx_update_descriptors(batch, ctx->fs, PIPE_SHADER_FRAGMENT);
if (IS_DIRTY(VERTEX) || true) {
if (IS_DIRTY(VERTEX)) {
agx_upload_vbos(batch);
}