JUCE icon indicating copy to clipboard operation
JUCE copied to clipboard

JUCE is an open-source cross-platform C++ application framework for desktop and mobile applications, including VST, VST3, AU, AUv3, LV2 and AAX audio plug-ins.

Results 279 JUCE issues
Sort by recently updated
recently updated
newest added

Reuse slider rather then duplicate its functionality. As a side benefit the text box is now editable.

so that we can our own dirtyRect to determine what needs to be repainted without worrying if the NSBackingStore of the NSView gets discarded by the OS. This is off...

As proposed here https://forum.juce.com/t/resample-a-complex-valued-buffer-without-de-interleaving-the-buffer/34703/2, I think it's useful to extend the interpolator classes to accept more than just float values. The pull request contains a refactored version of both LagrangeInterpolator...

(not an int actually - to allow usage with Fixed Point types) - this is to prevent accidental precision loss when users pass integers to function like degreesToRadians() see https://forum.juce.com/t/fr-add-static-assert-to-degreestoradians-and-radianstodegrees-to-check-if-floattype-is-indeed-a-floating-point-type/34629/2

@julianstorer 1.) a wrong pixel stride was used for single channel images 2.) The RGB and SingleChannel versions of the filter did not properly clip the output resulting in display...

when drive is around 1.0. This offers greatly improved audio quality at comparable performance (only 5% slower in my benchmark). @julianstorer: The LadderFilter is using a LookupTableTransform called saturationLUT that...

This allows to use only mouseListeners as trigger for mouseEnter(), mouseExit().. callbacks. This is especially useful when doing on a component addMouseListener(this,true) to itself. The default behaviour is that this...

Hello, I have noticed that, when hosting AUv3's, some plugins ignore the state of the `kAudioUnitProperty_BypassEffect` `AUParameter`. This causes these plugin to still process audio even though they should bypass....

Digging though the commit history didn't show any reason why this should exist. Reading the code didn't readily indicate any reason it should exist. It's existence meant I couldn't _cleanly_...

A small PR to easily also save/restore a window's visibility (e.g. supposably when using `ApplicationProperties` during a GUI application initialisation or shutdown). The `forceVisible` param is handy to ensure a...