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.98 by root, Mon May 29 02:01:56 2006 UTC vs.
Revision 1.100 by root, Wed May 31 17:16:47 2006 UTC

1073 } 1073 }
1074 1074
1075 // somewhat hackish, but for textures that require it, it really 1075 // somewhat hackish, but for textures that require it, it really
1076 // improves the look, and most others don't suffer. 1076 // improves the look, and most others don't suffer.
1077 glBindTexture (GL_TEXTURE_2D, name); 1077 glBindTexture (GL_TEXTURE_2D, name);
1078 glTexParameteri (GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_REPEAT); 1078 //glTexParameteri (GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
1079 glTexParameteri (GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_REPEAT); 1079 //glTexParameteri (GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
1080 // use uglier nearest interpolation because linear suffers
1081 // from transparent color bleeding and ugly wrapping effects.
1082 glTexParameteri (GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST);
1080} 1083}
1081 1084
1082int 1085int
1083ox (CFClient::Map self) 1086ox (CFClient::Map self)
1084 ALIAS: 1087 ALIAS:
1679 1682
1680void glColor (float r, float g, float b, float a = 1.0) 1683void glColor (float r, float g, float b, float a = 1.0)
1681 PROTOTYPE: @ 1684 PROTOTYPE: @
1682 CODE: 1685 CODE:
1683 // microsoft visual "c" rounds instead of truncating... 1686 // microsoft visual "c" rounds instead of truncating...
1684 glColor4ub (MIN ((int)(r * 255.f), 255), 1687 glColor4ub (MIN ((int)(r * 256.f), 255),
1685 MIN ((int)(g * 255.f), 255), 1688 MIN ((int)(g * 256.f), 255),
1686 MIN ((int)(b * 255.f), 255), 1689 MIN ((int)(b * 256.f), 255),
1687 MIN ((int)(a * 255.f), 255)); 1690 MIN ((int)(a * 256.f), 255));
1688 1691
1689void glInterleavedArrays (int format, int stride, char *data) 1692void glInterleavedArrays (int format, int stride, char *data)
1690 1693
1691void glDrawElements (int mode, int count, int type, char *indices) 1694void glDrawElements (int mode, int count, int type, char *indices)
1692 1695

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines