From: Zack Rusin Date: Fri, 30 Jul 2010 19:42:06 +0000 (-0400) Subject: draw: actually a noop, rather than not implemented X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=dd406cf34196a5a60362d8e1928b1308b56dd3f8;p=mesa.git draw: actually a noop, rather than not implemented we just have nothing to do in it right now --- diff --git a/src/gallium/auxiliary/draw/draw_gs.c b/src/gallium/auxiliary/draw/draw_gs.c index a36321d9102..cff859a42b7 100644 --- a/src/gallium/auxiliary/draw/draw_gs.c +++ b/src/gallium/auxiliary/draw/draw_gs.c @@ -75,7 +75,10 @@ draw_gs_set_constants(struct draw_context *draw, const void *constants, unsigned size) { - debug_printf("draw_gs_set_constants() not implemented yet!\n"); + /* noop. added here for symmetry with the VS + * code and in case we'll ever want to allign + * the constants, e.g. when we'll change to a + * different interpreter */ }