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.82 by root, Mon May 15 00:15:08 2006 UTC

84 84
85static void 85static void
86substitute_func (FcPattern *pattern, gpointer data) 86substitute_func (FcPattern *pattern, gpointer data)
87{ 87{
88 FcPatternAddBool (pattern, FC_HINTING , 1); 88 FcPatternAddBool (pattern, FC_HINTING , 1);
89#ifndef _WIN32
89 FcPatternAddBool (pattern, FC_AUTOHINT, 1); 90 FcPatternAddBool (pattern, FC_AUTOHINT, 0);
91#endif
90} 92}
91 93
92static void 94static void
93layout_update_font (CFClient__Layout self) 95layout_update_font (CFClient__Layout self)
94{ 96{
1590void glEnd () 1592void glEnd ()
1591 1593
1592void glColor (float r, float g, float b, float a = 1.0) 1594void glColor (float r, float g, float b, float a = 1.0)
1593 PROTOTYPE: @ 1595 PROTOTYPE: @
1594 CODE: 1596 CODE:
1595 glColor4ub (MIN ((int)r * 256., 255), 1597 glColor4ub (MIN ((int)(r * 255.f), 255),
1596 MIN ((int)g * 256., 255), 1598 MIN ((int)(g * 255.f), 255),
1597 MIN ((int)b * 256., 255), 1599 MIN ((int)(b * 255.f), 255),
1598 MIN ((int)a * 256., 255)); 1600 MIN ((int)(a * 255.f), 255));
1599 1601
1600void glVertex (float x, float y, float z = 0.) 1602void glVertex (float x, float y, float z = 0.)
1601 CODE: 1603 CODE:
1602 glVertex3f (x, y, z); 1604 glVertex3f (x, y, z);
1603 1605

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines