Processing Forum
<?xml version="1.0"?> | ||||
<feelings> | ||||
<feeling sentence="i don t feel so high now but it was predictable" feeling="high" born="1992" /> | ||||
<feeling sentence="i feel good" feeling="good" born="1992" /> | ||||
<feeling sentence="i rewatch btr it always makes me feel like i m a kat tun fan" born="1992" /> | ||||
<feeling sentence="i was smiling all weekend had this easing feeling in me and it was just good" feeling="good" born="1992" /> ...
|
||||
// Texture Objects ----------------------------------------------------------- |
protected int createTextureObject(int context) { |
deleteFinalizedTextureObjects(); |
int[] temp = new int[1]; |
pgl.genTextures(1, temp, 0); |
int id = temp[0]; |
GLResource res = new GLResource(id, context); |
if (glTextureObjects.containsKey(res)) { |
showWarning("Adding same texture twice"); |
} else { |
glTextureObjects.put(res, false); |
} |
return id; |
} |
I've asked this question on the Processing.js Google Group but not gotten any traction yet.
Thanks,
Stephen