mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-25 02:10:11 +01:00
gallium: multiply vertex point size by 0.5
This commit is contained in:
parent
286380020b
commit
46a787ad97
1 changed files with 1 additions and 1 deletions
|
|
@ -217,7 +217,7 @@ static void wide_point( struct draw_stage *stage,
|
|||
|
||||
/* point size is either per-vertex or fixed size */
|
||||
if (wide->psize_slot >= 0) {
|
||||
half_size = header->v[0]->data[wide->psize_slot][0];
|
||||
half_size = 0.5 * header->v[0]->data[wide->psize_slot][0];
|
||||
}
|
||||
else {
|
||||
half_size = wide->half_point_size;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue