X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fcore%2Fcommands.cpp;fp=source%2Fcore%2Fcommands.cpp;h=529cd3921fa5ef0243a6a78a6ffe2be6c1f6654d;hb=2e09b4f72f06537431151fe8b2574e1aa886ad48;hp=97da5dadbe9cbc29dcfcbf22a36009decdd79072;hpb=b6dbbbee0c7e6a3af10391f2d9f4bb9e007afb29;p=libs%2Fgl.git diff --git a/source/core/commands.cpp b/source/core/commands.cpp index 97da5dad..529cd392 100644 --- a/source/core/commands.cpp +++ b/source/core/commands.cpp @@ -54,17 +54,17 @@ void Commands::resolve_multisample(Framebuffer &target, BufferBits buffers) 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); } }