(no commit message)
[atyndall/cits2231.git] / helper.c
index a0f263d..8d45489 100644 (file)
--- a/helper.c
+++ b/helper.c
@@ -258,21 +258,21 @@ void drawLine() {
     // **NOTE: fix function
     glDisable(GL_TEXTURE_2D);
     glDisable(GL_LIGHTING);
-    glEnable(GL_BLEND);
+    //glEnable(GL_BLEND);
     glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
     glColor3f( 0.0, 0.0, 0.0 );
 
     glBegin(GL_LINES);
-    glVertex3i(  lineLength, 1.0, 0.0 );
-    glVertex3i( -lineLength, 1.0, 0.0 );
+    glVertex3i(  lineLength, 0.0, 0.0 );
+    glVertex3i( -lineLength, 0.0, 0.0 );
     glEnd();
 
     glBegin(GL_LINES);
-    glVertex3i( 0.0, 1.0,  lineLength );
-    glVertex3i( 0.0, 1.0, -lineLength );
+    glVertex3i( 0.0, 0.0,  lineLength );
+    glVertex3i( 0.0, 0.0, -lineLength );
     glEnd();
 
-    glDisable(GL_BLEND);
+    //glDisable(GL_BLEND);
     glEnable(GL_LIGHTING);
     glEnable(GL_TEXTURE_2D);
 }
\ No newline at end of file

UCC git Repository :: git.ucc.asn.au