diff options
author | Brian Paul <brianp@vmware.com> | 2012-10-16 17:54:37 -0600 |
---|---|---|
committer | Brian Paul <brianp@vmware.com> | 2012-10-16 17:55:39 -0600 |
commit | ffbac58746a18591499aea212e62b32159cc0f58 (patch) | |
tree | 070b511138efc15ad090394831bdf220817c6fa8 /src | |
parent | ce3faa993cca7ac6d9bf29f70a9e8e9b7db3dde7 (diff) |
svga: silence MSVC double/float assignment warnings
Diffstat (limited to 'src')
-rw-r--r-- | src/gallium/drivers/svga/svga_swtnl_state.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/gallium/drivers/svga/svga_swtnl_state.c b/src/gallium/drivers/svga/svga_swtnl_state.c index 134f384cc4..e9239bafef 100644 --- a/src/gallium/drivers/svga/svga_swtnl_state.c +++ b/src/gallium/drivers/svga/svga_swtnl_state.c @@ -35,21 +35,21 @@ #include "svga_swtnl_private.h" -#define SVGA_POINT_ADJ_X -0.375 -#define SVGA_POINT_ADJ_Y -0.5 +#define SVGA_POINT_ADJ_X -0.375f +#define SVGA_POINT_ADJ_Y -0.5f -#define SVGA_LINE_ADJ_X -0.5 -#define SVGA_LINE_ADJ_Y -0.5 +#define SVGA_LINE_ADJ_X -0.5f +#define SVGA_LINE_ADJ_Y -0.5f -#define SVGA_TRIANGLE_ADJ_X -0.375 -#define SVGA_TRIANGLE_ADJ_Y -0.5 +#define SVGA_TRIANGLE_ADJ_X -0.375f +#define SVGA_TRIANGLE_ADJ_Y -0.5f static void set_draw_viewport( struct svga_context *svga ) { struct pipe_viewport_state vp = svga->curr.viewport; - float adjx = 0; - float adjy = 0; + float adjx = 0.0f; + float adjy = 0.0f; switch (svga->curr.reduced_prim) { case PIPE_PRIM_POINTS: @@ -63,8 +63,8 @@ static void set_draw_viewport( struct svga_context *svga ) */ if (svga->curr.rast->need_pipeline & SVGA_PIPELINE_FLAG_LINES) { - adjx = SVGA_LINE_ADJ_X + 0.175; - adjy = SVGA_LINE_ADJ_Y - 0.175; + adjx = SVGA_LINE_ADJ_X + 0.175f; + adjy = SVGA_LINE_ADJ_Y - 0.175f; } else { adjx = SVGA_LINE_ADJ_X; |