(int target, int framebuffer)
| 3404 | // Framebuffers Objects |
| 3405 | |
| 3406 | public void bindFramebuffer(int target, int framebuffer) { |
| 3407 | graphics.beginBindFramebuffer(target, framebuffer); |
| 3408 | bindFramebufferImpl(target, framebuffer); |
| 3409 | graphics.endBindFramebuffer(target, framebuffer); |
| 3410 | } |
| 3411 | protected abstract void bindFramebufferImpl(int target, int framebuffer); |
| 3412 | |
| 3413 | public abstract void deleteFramebuffers(int n, IntBuffer framebuffers); |
nothing calls this directly
no test coverage detected