(int target, int framebuffer)
| 3347 | // Framebuffers Objects |
| 3348 | |
| 3349 | public void bindFramebuffer(int target, int framebuffer) { |
| 3350 | graphics.beginBindFramebuffer(target, framebuffer); |
| 3351 | bindFramebufferImpl(target, framebuffer); |
| 3352 | graphics.endBindFramebuffer(target, framebuffer); |
| 3353 | } |
| 3354 | protected abstract void bindFramebufferImpl(int target, int framebuffer); |
| 3355 | |
| 3356 | public abstract void deleteFramebuffers(int n, IntBuffer framebuffers); |
nothing calls this directly
no test coverage detected