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); }
public void put(Texture tex, int x, int y, int w, int h) { copyTexture(tex, x, y, w, h, false); }
public void put(Texture tex) { copyTexture(tex, 0, 0, tex.width, tex.height, false); }
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); }
public void set(Texture tex, int x, int y, int w, int h) { copyTexture(tex, x, y, w, h, true); }
public void set(Texture tex) { copyTexture(tex, 0, 0, tex.width, tex.height, true); }