r300g: Remove do-nothing functions.
authorCorbin Simpson <MostAwesomeDude@gmail.com>
Sat, 7 Nov 2009 21:12:15 +0000 (13:12 -0800)
committerCorbin Simpson <MostAwesomeDude@gmail.com>
Sat, 7 Nov 2009 21:12:15 +0000 (13:12 -0800)
src/gallium/drivers/r300/r300_vbo.c

index 7e88bf3b7cec23f7f0370780d80f2474f76f04d2..d3f2ce799af507c0bf2bdf612b8642422b59a6b8 100644 (file)
@@ -79,15 +79,6 @@ void setup_vertex_attributes(struct r300_context *r300)
     finish_vertex_attribs_setup(r300->vertex_info, r300->aos_count);
 }
 
-/* XXX WTF are these doing? */
-static void setup_vertex_array(struct r300_context *r300, struct pipe_vertex_element *element)
-{
-}
-
-static void finish_vertex_arrays_setup(struct r300_context *r300)
-{
-}
-
 /* XXX move/integrate this with the checks in r300_state_inlines */
 static boolean format_is_supported(enum pipe_format format, int nr_components)
 {
@@ -146,10 +137,7 @@ static void setup_vertex_buffers(struct r300_context *r300)
             /* XXX need to align buffer */
             assert(0);
         }
-        setup_vertex_array(r300, vert_elem);
     }
-
-    finish_vertex_arrays_setup(r300);
 }
 
 /* XXX these shouldn't be asserts since we can work around bad indexbufs */