summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZack Rusin <zackr@vmware.com>2010-07-30 15:42:06 -0400
committerZack Rusin <zackr@vmware.com>2010-07-30 15:42:50 -0400
commitdd406cf34196a5a60362d8e1928b1308b56dd3f8 (patch)
tree71a04049ca76d66159bba64a450afd28dc0a5db0
parentdbfe11c7c3a5c82c4c6182d4fed35aeb19bc4ff3 (diff)
draw: actually a noop, rather than not implemented
we just have nothing to do in it right now
-rw-r--r--src/gallium/auxiliary/draw/draw_gs.c5
1 files changed, 4 insertions, 1 deletions
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 */
}