Anthony Nicholls
04a89007b7
AAX: Remove unhelpful and potentially confusing virtual method
2 years ago
reuk
13f0e75ab0
NSViewComponentPeer: Fix rendering issue changing size of AUv2 window when JUCE_COREGRAPHICS_RENDER_WITH_MULTIPLE_PAINT_CALLS is enabled
2 years ago
Anthony Nicholls
02eb66ee7a
ProgressBar: Add style parameter
2 years ago
reuk
cb55176b0e
VST3 Client: DRY activateBus implementation
2 years ago
reuk
0836cf33b1
VST3 Client: Avoid assertion failure in setBusesLayout when using PreferredChannelConfigurations
Using a preferred channel config with no input or output channels could
cause an assertion here because the AudioProcessor will always have a
single input/output bus by default.
2 years ago
reuk
c5b8b7eae0
VST3 Host: Remove assertion when plugin requests that its editor should be opened
2 years ago
reuk
2d0f21fb4a
VST3 Host: Tidy up input/output loops
2 years ago
reuk
364976b179
AudioProcessor: Tidy up bus assertions
2 years ago
Oliver James
da2266f2b3
OnlineUnlockStatus: Handle key generation failure case
2 years ago
Oliver James
ebfe9b403b
SystemStats: Use 'identifierForVendor' for iOS device ID generation
2 years ago
Oliver James
c398ab065f
SystemStats: Use IORegistry API for device ID query
2 years ago
Anthony Nicholls
b3da4ae946
ThreadPool: Add support for a user specified thread name
2 years ago
Anthony Nicholls
21aca5ba3e
Slider: Fix linear bar slider outline
2 years ago
attila
aceef4f5a2
Windows WebView2: Fix build on C++17
2 years ago
Anthony Nicholls
b09b4c3bc0
Slider: add getNormalisableRange()
2 years ago
attila
cd17f96eb7
Fix MinGW build
2 years ago
Anthony Nicholls
61b27097b7
AAX: Allow runtime custom search paths for a page table file
2 years ago
attila
f16a430f08
Windows: Fix potential accessibility related leaks
2 years ago
attila
18489bb7d7
WebBrowserComponent: iOS: Add accessibility integration
2 years ago
attila
f519af3b62
WebBrowserComponent: Android: Add accessibility integration
2 years ago
attila
d8c282e293
WebBrowserComponent: MacOS: Add accessibility integration
2 years ago
attila
7657efd227
WebBrowserComponent: Windows: Add accessibility integration
2 years ago
reuk
bc9e709e59
ListBox: Rename getModel to avoid name hiding by derived classes
2 years ago
reuk
f012f8c280
OpenGL: Keep track of previously-attached VAOs and buffers when creating additional GL-backed Graphics contexts
Previously, code such as the following (where MyGLComponent is rendering
using an OpenGLContext) could result in GL errors, as the destruction of
the inner context unbound the array buffer and element array buffer
after use, instead of setting them to the previous values set up by the
outer context.
Additionally, a VAO was only set up in the OpenGLContext, so rendering
into a GL-backed LowLevel graphics context could fail if no VAO was
bound.
void MyGLComponent::paint (juce::Graphics& g)
{
juce::Image image { juce::Image::PixelFormat::ARGB, width, height, false, juce::OpenGLImageType() };
{
juce::Graphics innerContext { image };
// draw into innerContext
}
g.drawImage (image, juce::Rectangle<float> { width, height });
}
2 years ago
reuk
9705ef660e
FileListComponent: Allow getTooltipForRow to function as expected when overridden
2 years ago
reuk
c8c4cdc7d5
EdgeTable: Add offset before truncating to somewhat restore old rounding behaviour
2 years ago
Tom Poole
1fbfeb6039
iOS: Fix a constant redrawing bug
2 years ago
Anthony Nicholls
50518ee618
HighResolutionTimer: Use a generic timer for BSD
2 years ago
attila
c79ca4e815
FileTreeComponent: Order items according to OS specific rules
This makes the ordering consistent with other view modes of the
FileBrowserComponent and restores the behaviour prior to a400d3ebe0 .
2 years ago
Anthony Nicholls
587e07007d
HighResolutionTimer: Complete rewrite
- added unit tests
- best performance timers used for each platform
- fixed an issue in which timer callbacks could drift
2 years ago
reuk
ca16b82daa
VST3: Fix build failure in manifest helper when using an AppConfig.h
2 years ago
reuk
11f84c977f
MinGW: Fix redundant redeclaration warning
2 years ago
reuk
c2949edda0
OpenGL: Avoid taking X lock when swapping buffers to reduce lock contention
2 years ago
reuk
ed15516087
OpenGL: Use newer GLX APIs
2 years ago
reuk
4f67a18a3f
EdgeTable: Avoid integer truncation when rendering paths with large coordinates
Previously, if the PathFlatteningIterator returned a line segment with
very large x or y positions, the result of
roundToInt (iter.y1 * 256.0f)
could be incorrect, if the result was too large to fit in an int.
Using int64_t to store intermediate results, converting to int when
updating the edge table itself produces accurate results for a wider
range of inputs.
2 years ago
reuk
059d98507c
Params: Consistently use HostedAudioProcessorParameter rather than AudioProcessorParameterWithID when querying parameter IDs
AudioProcessorParameterWithID pre-dates HostedAudioProcessorParameter,
which is why AudioProcessorParameterWithID was initially used for this
purpose.
2 years ago
reuk
722b552657
OpenGL: Avoid signed integer truncation when computing frame time differences
2 years ago
reuk
604e090372
VST3 Host: Update host parameter values when only plugin AudioProcessor reports changes
2 years ago
reuk
974795ed7a
VST3: Add support for 5/6/7-order ambisonics from VST 3.7.8
2 years ago
reuk
6015900d6d
VST3 Host: Constrain editor view to prevent it being resized beyond the minimum size recommended by the plugin
2 years ago
reuk
eeb6230db4
VST3 Host: Allow resizing of plugin views
2 years ago
reuk
7c53711ce0
VST3 Host: Read new moduleinfo.json location
2 years ago
reuk
77458fb4f9
VST3 Client: Generate moduleinfo.json into Resources directory of bundle
2 years ago
reuk
06a2089872
VST3 Client: Update moduleinfotool to write compatibility info from plugin
Reintegrates changes from cf9fc84669
2 years ago
reuk
ab1b8de52f
VST3: Update SDK to 3.7.8
2 years ago
reuk
e56e470f5b
LV2 Manifest Helper: Rename main source file
2 years ago
reuk
53a87c178c
AlertWindow: Update documentation
2 years ago
reuk
c13276a4d6
Windows: Allow IME input in plugins
2 years ago
reuk
dae9567dca
WindowsHooks: Split declarations and definitions into seaprate files
2 years ago
reuk
7ed89e4896
WindowsHooks: Move into juce_gui_basics
2 years ago