diff --git a/extras/audio plugin host/Source/FilterGraph.h b/extras/audio plugin host/Source/FilterGraph.h index 2c551195cd..c858d616b3 100644 --- a/extras/audio plugin host/Source/FilterGraph.h +++ b/extras/audio plugin host/Source/FilterGraph.h @@ -101,7 +101,6 @@ private: //============================================================================== AudioPluginFormatManager& formatManager; AudioProcessorGraph graph; - AudioProcessorPlayer player; uint32 lastUID; uint32 getNextUID() noexcept; diff --git a/modules/juce_events/messages/juce_MessageManager.h b/modules/juce_events/messages/juce_MessageManager.h index 9709d896be..28186500ba 100644 --- a/modules/juce_events/messages/juce_MessageManager.h +++ b/modules/juce_events/messages/juce_MessageManager.h @@ -82,7 +82,7 @@ public: */ bool hasStopMessageBeenSent() const noexcept { return quitMessagePosted; } - #if JUCE_MODAL_LOOPS_PERMITTED + #if JUCE_MODAL_LOOPS_PERMITTED || DOXYGEN /** Synchronously dispatches messages until a given time has elapsed. Returns false if a quit message has been posted by a call to stopDispatchLoop(), diff --git a/modules/juce_opengl/native/juce_MissingGLDefinitions.h b/modules/juce_opengl/native/juce_MissingGLDefinitions.h index e207f24707..4978aeec5e 100644 --- a/modules/juce_opengl/native/juce_MissingGLDefinitions.h +++ b/modules/juce_opengl/native/juce_MissingGLDefinitions.h @@ -86,29 +86,34 @@ namespace { enum { - WGL_NUMBER_PIXEL_FORMATS_ARB = 0x2000, - WGL_DRAW_TO_WINDOW_ARB = 0x2001, - WGL_ACCELERATION_ARB = 0x2003, - WGL_SWAP_METHOD_ARB = 0x2007, - WGL_SUPPORT_OPENGL_ARB = 0x2010, - WGL_PIXEL_TYPE_ARB = 0x2013, - WGL_DOUBLE_BUFFER_ARB = 0x2011, - WGL_COLOR_BITS_ARB = 0x2014, - WGL_RED_BITS_ARB = 0x2015, - WGL_GREEN_BITS_ARB = 0x2017, - WGL_BLUE_BITS_ARB = 0x2019, - WGL_ALPHA_BITS_ARB = 0x201B, - WGL_DEPTH_BITS_ARB = 0x2022, - WGL_STENCIL_BITS_ARB = 0x2023, - WGL_FULL_ACCELERATION_ARB = 0x2027, - WGL_ACCUM_RED_BITS_ARB = 0x201E, - WGL_ACCUM_GREEN_BITS_ARB = 0x201F, - WGL_ACCUM_BLUE_BITS_ARB = 0x2020, - WGL_ACCUM_ALPHA_BITS_ARB = 0x2021, - WGL_STEREO_ARB = 0x2012, - WGL_SAMPLE_BUFFERS_ARB = 0x2041, - WGL_SAMPLES_ARB = 0x2042, - WGL_TYPE_RGBA_ARB = 0x202B, + WGL_NUMBER_PIXEL_FORMATS_ARB = 0x2000, + WGL_DRAW_TO_WINDOW_ARB = 0x2001, + WGL_ACCELERATION_ARB = 0x2003, + WGL_SWAP_METHOD_ARB = 0x2007, + WGL_SUPPORT_OPENGL_ARB = 0x2010, + WGL_PIXEL_TYPE_ARB = 0x2013, + WGL_DOUBLE_BUFFER_ARB = 0x2011, + WGL_COLOR_BITS_ARB = 0x2014, + WGL_RED_BITS_ARB = 0x2015, + WGL_GREEN_BITS_ARB = 0x2017, + WGL_BLUE_BITS_ARB = 0x2019, + WGL_ALPHA_BITS_ARB = 0x201B, + WGL_DEPTH_BITS_ARB = 0x2022, + WGL_STENCIL_BITS_ARB = 0x2023, + WGL_FULL_ACCELERATION_ARB = 0x2027, + WGL_ACCUM_RED_BITS_ARB = 0x201E, + WGL_ACCUM_GREEN_BITS_ARB = 0x201F, + WGL_ACCUM_BLUE_BITS_ARB = 0x2020, + WGL_ACCUM_ALPHA_BITS_ARB = 0x2021, + WGL_STEREO_ARB = 0x2012, + WGL_SAMPLE_BUFFERS_ARB = 0x2041, + WGL_SAMPLES_ARB = 0x2042, + WGL_TYPE_RGBA_ARB = 0x202B, + WGL_CONTEXT_MAJOR_VERSION_ARB = 0x2091, + WGL_CONTEXT_MINOR_VERSION_ARB = 0x2092, + WGL_CONTEXT_PROFILE_MASK_ARB = 0x9126, + WGL_CONTEXT_CORE_PROFILE_BIT_ARB = 0x0001, + WGL_CONTEXT_COMPATIBILITY_PROFILE_BIT_ARB = 0x0002, GL_OPERAND0_RGB = 0x8590, GL_OPERAND1_RGB = 0x8591,