ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/Deliantra-Client/Client.xs
(Generate patch)

Comparing deliantra/Deliantra-Client/Client.xs (file contents):
Revision 1.80 by root, Sun May 14 22:58:24 2006 UTC vs.
Revision 1.81 by root, Sun May 14 23:19:14 2006 UTC

1590void glEnd () 1590void glEnd ()
1591 1591
1592void glColor (float r, float g, float b, float a = 1.0) 1592void glColor (float r, float g, float b, float a = 1.0)
1593 PROTOTYPE: @ 1593 PROTOTYPE: @
1594 CODE: 1594 CODE:
1595 glColor4ub (MIN ((int)r * 256., 255), 1595 glColor4ub (MIN ((int)(r * 255.f), 255),
1596 MIN ((int)g * 256., 255), 1596 MIN ((int)(g * 255.f), 255),
1597 MIN ((int)b * 256., 255), 1597 MIN ((int)(b * 255.f), 255),
1598 MIN ((int)a * 256., 255)); 1598 MIN ((int)(a * 255.f), 255));
1599 1599
1600void glVertex (float x, float y, float z = 0.) 1600void glVertex (float x, float y, float z = 0.)
1601 CODE: 1601 CODE:
1602 glVertex3f (x, y, z); 1602 glVertex3f (x, y, z);
1603 1603

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines