summaryrefslogtreecommitdiff
path: root/src/mesa/pipe/draw/draw_wide_prims.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mesa/pipe/draw/draw_wide_prims.c')
-rw-r--r--src/mesa/pipe/draw/draw_wide_prims.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/pipe/draw/draw_wide_prims.c b/src/mesa/pipe/draw/draw_wide_prims.c
index 37b60a6da19..655774b155f 100644
--- a/src/mesa/pipe/draw/draw_wide_prims.c
+++ b/src/mesa/pipe/draw/draw_wide_prims.c
@@ -175,7 +175,7 @@ static void wide_line_aa(struct draw_stage *stage,
float *pos;
float dx = header->v[1]->data[0][0] - header->v[0]->data[0][0];
float dy = header->v[1]->data[0][1] - header->v[0]->data[0][1];
- const float len = sqrt(dx * dx + dy * dy);
+ const float len = (float) sqrt(dx * dx + dy * dy);
uint i;
dx = dx * half_width / len;