Not using CLAMP in PFontTexture

This commit is contained in:
codeanticode
2011-06-19 16:13:00 +00:00
parent 456c78494c
commit 63bf3627a3

View File

@@ -98,10 +98,7 @@ class PFontTexture implements PConstants {
resize = false;
}
PTexture.Parameters par = new PTexture.Parameters(ARGB, BILINEAR);
par.wrapU = CLAMP;
par.wrapV = CLAMP;
PTexture tex = new PTexture(parent, w, h, par);
PTexture tex = new PTexture(parent, w, h, new PTexture.Parameters(ARGB, BILINEAR));
if (textures == null) {
textures = new PTexture[1];