From: Brian Paul Date: Tue, 6 Feb 2018 22:33:37 +0000 (-0700) Subject: cso: add a couple sanity check assertions in cso_draw_vbo() X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b03ade55b9fbb48b87123b2bd34a6c24ceb2b5b1;p=mesa.git cso: add a couple sanity check assertions in cso_draw_vbo() Reviewed-by: Roland Scheidegger --- 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 {