diff options
author | Brian Paul <[email protected]> | 2017-12-07 21:11:40 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2017-12-12 09:46:18 -0700 |
commit | 7469966ed2ac47de6a40829bd16a1a3e22fdbecf (patch) | |
tree | 9d7f1e8c3ab5caabedef1a0e3e06280cd1fc7775 /src/gallium | |
parent | 38a4fd8ad6a956eb1822e6e0b36949cc9eac5053 (diff) |
cso: add point rasterization sanity check assertion
Reviewed-by: Nicolai Hähnle <[email protected]>
Reviewed-by: Roland Scheidegger <[email protected]>
Diffstat (limited to 'src/gallium')
-rw-r--r-- | src/gallium/auxiliary/cso_cache/cso_context.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/cso_cache/cso_context.c b/src/gallium/auxiliary/cso_cache/cso_context.c index df5543c0810..dd9821e8285 100644 --- a/src/gallium/auxiliary/cso_cache/cso_context.c +++ b/src/gallium/auxiliary/cso_cache/cso_context.c @@ -592,6 +592,11 @@ enum pipe_error cso_set_rasterizer(struct cso_context *ctx, (void*)templ, key_size); void *handle = NULL; + /* We can't have both point_quad_rasterization (sprites) and point_smooth + * (round AA points) enabled at the same time. + */ + assert(!(templ->point_quad_rasterization && templ->point_smooth)); + if (cso_hash_iter_is_null(iter)) { struct cso_rasterizer *cso = MALLOC(sizeof(struct cso_rasterizer)); if (!cso) |