(Program p)
| 68 | } |
| 69 | |
| 70 | public void copyFrom(Program p) |
| 71 | { |
| 72 | this.id = p.getId(); |
| 73 | this.alphaState = p.getAlphaState(); |
| 74 | this.blendState = p.getBlendState(); |
| 75 | this.renderScale = p.getRenderScale(); |
| 76 | System.arraycopy(p.getBuffersFlip(), 0, this.buffersFlip, 0, this.buffersFlip.length); |
| 77 | this.drawBufSettings = p.getDrawBufSettings(); |
| 78 | this.drawBuffers = p.getDrawBuffers(); |
| 79 | this.compositeMipmapSetting = p.getCompositeMipmapSetting(); |
| 80 | this.countInstances = p.getCountInstances(); |
| 81 | System.arraycopy(p.getToggleColorTextures(), 0, this.toggleColorTextures, 0, this.toggleColorTextures.length); |
| 82 | } |
| 83 | |
| 84 | public int getIndex() |
| 85 | { |
no test coverage detected