gallium: explictly cast double to float in vertex fetch
authorKeith Whitwell <keith@tungstengraphics.com>
Mon, 28 Jan 2008 10:48:22 +0000 (10:48 +0000)
committerBen Skeggs <skeggsb@gmail.com>
Fri, 15 Feb 2008 02:50:22 +0000 (13:50 +1100)
src/mesa/pipe/draw/draw_vertex_fetch.c

index 0789dc8..af3983b 100644 (file)
@@ -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]