llvmpipe: fixup refactor copypasta

I accidentally set this state based on the wrong state when refactoring,
whoops!

Fixes: a1846e3926 ("llvmpipe: merge all rasterizer-bind functions")
Reviewed-by: Mike Blumenkrantz <michael.blumenkrantz@gmail.com>
Reviewed-by: Brian Paul <brianp@vmware.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/22832>
This commit is contained in:
Erik Faye-Lund 2023-05-03 18:31:38 +02:00 committed by Marge Bot
parent 6ea7bdb152
commit 360feea99c

View File

@ -599,7 +599,7 @@ lp_setup_bind_rasterizer(struct lp_setup_context *setup,
setup->point_size = rast->point_size;
setup->sprite_coord_enable = rast->sprite_coord_enable;
setup->sprite_coord_origin = rast->sprite_coord_mode;
setup->point_tri_clip = rast->point_size_per_vertex;
setup->point_tri_clip = rast->point_tri_clip;
setup->point_size_per_vertex = rast->point_size_per_vertex;
setup->legacy_points = !rast->point_quad_rasterization && !setup->multisample;
}