glstuff

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

commit b966b9b2bdd498d9c314510e5ac41ce2b098b283
parent 535fb56b6aab51fc4cc6108cd63cc90bbff11644
Author: Brian Swetland <swetland@frotz.net>
Date:   Sat, 26 Jan 2013 19:26:23 -0800

remove debug print

Diffstat:
Mtest2d.cc | 1-
1 file changed, 0 insertions(+), 1 deletion(-)

diff --git a/test2d.cc b/test2d.cc @@ -62,7 +62,6 @@ void adata_init(struct acell *data, int w, int h) { memset(p, 0, sizeof(struct acell) * w * h * 6); y = 1; for (y = h; y > 0; y--) { - fprintf(stderr,"%d\n",h-y); for (x = 0; x < w; x++) { p->x = x+0; p->y = y+0; p->u = 0; p->v = 0; p->i = x; p->j = h-y; p++;