mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 11:48:06 +02:00
svga: Enable the draw pipeline for smooth lines.
Spotted by Brian Paul.
This commit is contained in:
parent
57a3d36a68
commit
6ed0f2ac11
1 changed files with 5 additions and 0 deletions
|
|
@ -127,6 +127,11 @@ svga_create_rasterizer_state(struct pipe_context *pipe,
|
|||
rast->need_pipeline_points_str = "smooth points";
|
||||
}
|
||||
|
||||
if (templ->line_smooth) {
|
||||
rast->need_pipeline |= SVGA_PIPELINE_FLAG_LINES;
|
||||
rast->need_pipeline_lines_str = "smooth lines";
|
||||
}
|
||||
|
||||
{
|
||||
int fill_front = templ->fill_front;
|
||||
int fill_back = templ->fill_back;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue