mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-29 18:50:10 +01:00
gallium: set rasterizer.gl_rasterization_rules = 1 in a few more places
This commit is contained in:
parent
ce5c867cbb
commit
124e1345c9
2 changed files with 2 additions and 0 deletions
|
|
@ -754,6 +754,7 @@ st_init_bitmap(struct st_context *st)
|
|||
|
||||
/* init baseline rasterizer state once */
|
||||
memset(&st->bitmap.rasterizer, 0, sizeof(st->bitmap.rasterizer));
|
||||
st->bitmap.rasterizer.gl_rasterization_rules = 1;
|
||||
st->bitmap.rasterizer.bypass_vs = 1;
|
||||
|
||||
init_bitmap_cache(st);
|
||||
|
|
|
|||
|
|
@ -62,6 +62,7 @@ st_init_clear(struct st_context *st)
|
|||
|
||||
/* rasterizer state: bypass clipping */
|
||||
memset(&st->clear.raster, 0, sizeof(st->clear.raster));
|
||||
st->clear.raster.gl_rasterization_rules = 1;
|
||||
st->clear.raster.bypass_clipping = 1;
|
||||
|
||||
/* viewport state: identity since we're drawing in window coords */
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue