]> git.tdb.fi Git - libs/gl.git/blobdiff - source/core/commands.cpp
Query the attachments of the default framebuffer
[libs/gl.git] / source / core / commands.cpp
index 563c4a83d549175a34d61f65339a19e98fa9816b..529cd3921fa5ef0243a6a78a6ffe2be6c1f6654d 100644 (file)
@@ -46,23 +46,25 @@ void Commands::draw_instanced(const Batch &batch, unsigned count)
 
 void Commands::resolve_multisample(Framebuffer &target, BufferBits buffers)
 {
+       static Require _req(EXT_framebuffer_blit);
+
        const Framebuffer *source = pipeline_state->get_framebuffer();
 
        unsigned width = min(source->get_width(), target.get_width());
        unsigned height = min(source->get_height(), target.get_height());
 
        if(ARB_direct_state_access)
-               glBlitNamedFramebuffer(source->get_id(), target.get_id(), 0, 0, width, height, 0, 0, width, height, buffers, GL_NEAREST);
+               glBlitNamedFramebuffer(source->id, target.id, 0, 0, width, height, 0, 0, width, height, buffers, GL_NEAREST);
        else
        {
-               glBindFramebuffer(GL_READ_FRAMEBUFFER, source->get_id());
-               glBindFramebuffer(GL_DRAW_FRAMEBUFFER, target.get_id());
+               glBindFramebuffer(GL_READ_FRAMEBUFFER, source->id);
+               glBindFramebuffer(GL_DRAW_FRAMEBUFFER, target.id);
 
                target.refresh();
 
                glBlitFramebuffer(0, 0, width, height, 0, 0, width, height, buffers, GL_NEAREST);
 
-               glBindFramebuffer(GL_FRAMEBUFFER, source->get_id());
+               glBindFramebuffer(GL_FRAMEBUFFER, source->id);
        }
 }