silence some warnings
authorZack Rusin <zack@tungstengraphics.com>
Mon, 14 Apr 2008 16:29:23 +0000 (12:29 -0400)
committerZack Rusin <zack@tungstengraphics.com>
Mon, 14 Apr 2008 16:29:23 +0000 (12:29 -0400)
src/gallium/auxiliary/draw/draw_pt.c
src/gallium/auxiliary/draw/draw_pt_fetch_emit.c
src/gallium/auxiliary/draw/draw_pt_fetch_pipeline.c
src/gallium/auxiliary/draw/draw_pt_fetch_shade_pipeline.c

index 5c16165c15ce00123850617e09e6646b27f6e87a..3d2e7bf7b82b86b09b24196091e4cf2953b5212f 100644 (file)
 #include "draw/draw_pt.h"
 
 
-/* XXX: Shouldn't those two functions below use the '>' operator???
- */
+#if 0
 static boolean too_many_elts( struct draw_context *draw,
                               unsigned elts )
 {
    return elts > (8 * 1024);
 }
+#endif
 
 static INLINE unsigned reduced_prim(unsigned prim)
 {
index 2f8b08db79c29ec00f1e7a63381d5c15b2c3bf81..3a26a5d71239db4ad4b0aac69ede267f1a6296c7 100644 (file)
@@ -145,7 +145,6 @@ fetch_store_general( struct fetch_emit_middle_end *feme,
                      unsigned count )
 {
    float *out = (float *)out_ptr;
-   struct vbuf_render *render = feme->draw->render;
    uint i, j;
 
    for (i = 0; i < count; i++) {
@@ -167,7 +166,6 @@ fetch_store_general( struct fetch_emit_middle_end *feme,
 static void fetch_emit_prepare( struct draw_pt_middle_end *middle,
                                 unsigned prim )
 {
-   static const float zero = 0;
    struct fetch_emit_middle_end *feme = (struct fetch_emit_middle_end *)middle;
    struct draw_context *draw = feme->draw;
    const struct vertex_info *vinfo;
index 0914a9044051cbefeb3e84993fe2d2f9768867d0..a70d129c93c2e888c15cd7bafb68e936b193ea0e 100644 (file)
@@ -87,7 +87,7 @@ struct fetch_pipeline_middle_end {
 };
 
 
-
+#if 0
 static void emit_R32_FLOAT( const float *attrib,
                             float **out )
 {
@@ -111,7 +111,7 @@ static void emit_R32G32B32_FLOAT( const float *attrib,
    (*out)[2] = attrib[2];
    (*out) += 3;
 }
-
+#endif
 static void emit_R32G32B32A32_FLOAT( const float *attrib,
                                      float **out )
 {
index 3fa6dcc5e7418a9e7ef63873ed863f835a58c44f..b49c9efa65b5a629ea467bf3e4efd75e746da93c 100644 (file)
@@ -49,6 +49,7 @@ struct fetch_pipeline_middle_end {
    unsigned prim;
 };
 
+#if 0
 static void emit_R32_FLOAT( const float *attrib,
                             float **out )
 {
@@ -72,7 +73,7 @@ static void emit_R32G32B32_FLOAT( const float *attrib,
    (*out)[2] = attrib[2];
    (*out) += 3;
 }
-
+#endif
 static void emit_R32G32B32A32_FLOAT( const float *attrib,
                                      float **out )
 {