diff options
author | Keith Whitwell <keithw@vmware.com> | 2009-06-30 14:24:33 +0100 |
---|---|---|
committer | Keith Whitwell <keithw@vmware.com> | 2009-06-30 14:24:33 +0100 |
commit | 672f98321dcc3248dc59ad80436114e348970821 (patch) | |
tree | 6fe795b205e40af5f75da0f69e8cc5cc29d3f6e7 | |
parent | cd67a4acdf6d0b376c083215720546099288ac33 (diff) |
mesa: revert accidental chandes to test programsst-vbo
Caught up accidentally in earlier commit.
-rw-r--r-- | progs/samples/line.c | 2 | ||||
-rw-r--r-- | progs/trivial/Makefile | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/progs/samples/line.c b/progs/samples/line.c index c37272bb472..83f70cb3ac4 100644 --- a/progs/samples/line.c +++ b/progs/samples/line.c @@ -138,7 +138,7 @@ static void Draw(void) glShadeModel( GL_FLAT ); - for (i = 0; i < 15; i += 5) { + for (i = 0; i < 360; i += 5) { glRotatef(5.0, 0,0,1); (rgb) ? glColor3f(1.0, 1.0, 0.0) : glIndexi(ci); diff --git a/progs/trivial/Makefile b/progs/trivial/Makefile index 8989963aad9..22de83fa790 100644 --- a/progs/trivial/Makefile +++ b/progs/trivial/Makefile @@ -38,7 +38,6 @@ SOURCES = \ line-userclip-nop.c \ line-userclip.c \ line-wide.c \ - line-line.c \ line.c \ lineloop-clip.c \ lineloop-elts.c \ |