From b03ade55b9fbb48b87123b2bd34a6c24ceb2b5b1 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Tue, 6 Feb 2018 15:33:37 -0700 Subject: [PATCH] cso: add a couple sanity check assertions in cso_draw_vbo() Reviewed-by: Roland Scheidegger --- src/gallium/auxiliary/cso_cache/cso_context.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/gallium/auxiliary/cso_cache/cso_context.c b/src/gallium/auxiliary/cso_cache/cso_context.c index dd9821e8285..1b5d4b55987 100644 --- a/src/gallium/auxiliary/cso_cache/cso_context.c +++ b/src/gallium/auxiliary/cso_cache/cso_context.c @@ -1686,6 +1686,12 @@ cso_draw_vbo(struct cso_context *cso, { struct u_vbuf *vbuf = cso->vbuf; + /* We can't have both indirect drawing and SO-vertex-count drawing */ + assert(info->indirect == NULL || info->count_from_stream_output == NULL); + + /* We can't have SO-vertex-count drawing with an index buffer */ + assert(info->count_from_stream_output == NULL || info->index_size == 0); + if (vbuf) { u_vbuf_draw_vbo(vbuf, info); } else { -- 2.30.2