Revision: 57194
          http://sourceforge.net/p/brlcad/code/57194
Author:   starseeker
Date:     2013-08-28 02:48:41 +0000 (Wed, 28 Aug 2013)
Log Message:
-----------
Variable names appear to be different between wgl and ogl (why??)

Modified Paths:
--------------
    brlcad/trunk/src/libdm/dm-wgl.c

Modified: brlcad/trunk/src/libdm/dm-wgl.c
===================================================================
--- brlcad/trunk/src/libdm/dm-wgl.c     2013-08-28 02:31:14 UTC (rev 57193)
+++ brlcad/trunk/src/libdm/dm-wgl.c     2013-08-28 02:48:41 UTC (rev 57194)
@@ -1228,18 +1228,18 @@
                    first = 0;
                    glPointSize(1.0);
                    glBegin(GL_POINTS);
-                   glVertex3dv(dpt);
+                   glVertex3dv(glpt);
                    break;
                case BN_VLIST_LINE_WIDTH:
-                   lineWidth = (GLfloat)(*pt)[0];
-                   if (lineWidth > 0.0) {
-                       glLineWidth(lineWidth);
+                   originalLineWidth = (GLfloat)(*pt)[0];
+                   if (originalLineWidth > 0.0) {
+                       glLineWidth(originalLineWidth);
                    }
                    break;
                case BN_VLIST_POINT_SIZE:
-                   pointSize = (GLfloat)(*pt)[0];
-                   if (pointSize > 0.0) {
-                       glPointSize(pointSize);
+                   originalPointSize = (GLfloat)(*pt)[0];
+                   if (originalPointSize > 0.0) {
+                       glPointSize(originalPointSize);
                    }
                    break;
            }

This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.


------------------------------------------------------------------------------
Learn the latest--Visual Studio 2012, SharePoint 2013, SQL 2012, more!
Discover the easy way to master current and previous Microsoft technologies
and advance your career. Get an incredible 1,500+ hours of step-by-step
tutorial videos with LearnDevNow. Subscribe today and save!
http://pubads.g.doubleclick.net/gampad/clk?id=58040911&iu=/4140/ostg.clktrk
_______________________________________________
BRL-CAD Source Commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/brlcad-commits

Reply via email to