Mesa (master): draw: actually a noop, rather than not implemented

Zack Rusin zack at kemper.freedesktop.org
Fri Jul 30 19:38:41 UTC 2010


Module: Mesa
Branch: master
Commit: dd406cf34196a5a60362d8e1928b1308b56dd3f8
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=dd406cf34196a5a60362d8e1928b1308b56dd3f8

Author: Zack Rusin <zackr at vmware.com>
Date:   Fri Jul 30 15:42:06 2010 -0400

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 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 a36321d..cff859a 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 */
 }
 
 




More information about the mesa-commit mailing list