Esempio n. 1
0
 public void put(
     int texTarget,
     int texName,
     int texWidth,
     int texHeight,
     int target,
     int tex,
     int x,
     int y,
     int w,
     int h) {
   copyTexture(texTarget, texName, texWidth, texHeight, x, y, w, h, false);
 }
Esempio n. 2
0
 public void put(Texture tex, int x, int y, int w, int h) {
   copyTexture(tex, x, y, w, h, false);
 }
Esempio n. 3
0
 public void put(Texture tex) {
   copyTexture(tex, 0, 0, tex.width, tex.height, false);
 }
Esempio n. 4
0
 public void set(int texTarget, int texName, int texWidth, int texHeight, int w, int h) {
   copyTexture(texTarget, texName, texWidth, texHeight, 0, 0, w, h, true);
 }
Esempio n. 5
0
 public void set(Texture tex, int x, int y, int w, int h) {
   copyTexture(tex, x, y, w, h, true);
 }
Esempio n. 6
0
 public void set(Texture tex) {
   copyTexture(tex, 0, 0, tex.width, tex.height, true);
 }