From: Keith Whitwell Date: Mon, 28 Jan 2008 10:48:22 +0000 (+0000) Subject: gallium: explictly cast double to float in vertex fetch X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=a46181044fd5573895180ee5f1a016c4c1e4a653;p=mesa.git gallium: explictly cast double to float in vertex fetch --- diff --git a/src/mesa/pipe/draw/draw_vertex_fetch.c b/src/mesa/pipe/draw/draw_vertex_fetch.c index 0789dc8e8c7..af3983b7f03 100644 --- a/src/mesa/pipe/draw/draw_vertex_fetch.c +++ b/src/mesa/pipe/draw/draw_vertex_fetch.c @@ -62,7 +62,7 @@ fetch_##NAME(const void *ptr, float *attrib) \ } \ } -#define CVT_64_FLOAT ((double *) ptr)[i] +#define CVT_64_FLOAT (float) ((double *) ptr)[i] #define CVT_32_FLOAT ((float *) ptr)[i] #define CVT_8_USCALED (float) ((unsigned char *) ptr)[i]