From dd406cf34196a5a60362d8e1928b1308b56dd3f8 Mon Sep 17 00:00:00 2001 From: Zack Rusin Date: Fri, 30 Jul 2010 15:42:06 -0400 Subject: [PATCH] draw: actually a noop, rather than not implemented we just have nothing to do in it right now --- src/gallium/auxiliary/draw/draw_gs.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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 */ } -- 2.11.0