mirror of
https://github.com/processing/processing4.git
synced 2026-02-02 21:29:17 +01:00
Not using CLAMP in PFontTexture
This commit is contained in:
@@ -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];
|
||||
|
||||
Reference in New Issue
Block a user