From: Mikko Rasa Date: Sat, 18 Sep 2021 12:54:11 +0000 (+0300) Subject: Add missing Require to Commands::resolve_multisample X-Git-Url: http://git.tdb.fi/?p=libs%2Fgl.git;a=commitdiff_plain;h=b6dbbbee0c7e6a3af10391f2d9f4bb9e007afb29 Add missing Require to Commands::resolve_multisample --- diff --git a/source/core/commands.cpp b/source/core/commands.cpp index 563c4a83..97da5dad 100644 --- a/source/core/commands.cpp +++ b/source/core/commands.cpp @@ -46,6 +46,8 @@ 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());