Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2023-09-23 | Clean up includes and forward declarations | David Robillard | 1 | -0/+1 | |
2023-02-03 | Suppress/fix new warnings in clang-tidy 15 | David Robillard | 1 | -7/+7 | |
2022-12-14 | Concatenate nested namespaces | David Robillard | 1 | -4/+2 | |
2022-08-18 | Use consistent spacing for line comments | David Robillard | 1 | -1/+1 | |
2022-08-18 | Use a consistent style for FOREACH macros | David Robillard | 1 | -1/+1 | |
2022-08-18 | Use a consistent style for empty braces | David Robillard | 1 | -2/+1 | |
2022-08-18 | Avoid "else" after "return", "break", and "continue" | David Robillard | 1 | -3/+9 | |
2022-08-18 | Use default member initialization | David Robillard | 1 | -12/+0 | |
2022-08-18 | Clean up includes | David Robillard | 1 | -0/+2 | |
2022-08-18 | Clean up includes | David Robillard | 1 | -2/+0 | |
2021-01-02 | Update for latest raul | David Robillard | 1 | -3/+3 | |
2020-12-15 | Clean up includes in core and server | David Robillard | 1 | -0/+1 | |
2020-08-03 | Clean up includes | David Robillard | 1 | -0/+3 | |
As directed by include-what-you-use. Unfortunately, it is still confused by quite a few things, but this gets a lot closer to a clean report, and at least makes the output more tolerable to manually check. | |||||
2020-08-02 | Remove Raul::managed_ptr alias | David Robillard | 1 | -6/+5 | |
2020-08-02 | Remove std::shared_ptr alias | David Robillard | 1 | -0/+1 | |
2020-08-02 | Fix implicit-fallthrough warnings | David Robillard | 1 | -0/+1 | |
2020-08-02 | Use consistent naming for context parameters | David Robillard | 1 | -47/+51 | |
2020-08-02 | Make member functions const or static where possible | David Robillard | 1 | -2/+2 | |
2020-08-01 | Use modern casts | David Robillard | 1 | -7/+9 | |
2020-08-01 | Add explicit accessors to Quark | David Robillard | 1 | -1/+2 | |
2020-07-18 | Add missing const specifiers | David Robillard | 1 | -1/+1 | |
2019-12-08 | Cleanup: Remove unused parameter names | David Robillard | 1 | -5/+5 | |
2019-12-08 | Cleanup: Use "auto" to avoid repeating type names | David Robillard | 1 | -3/+3 | |
2019-03-09 | Clean up includes and forward declarations | David Robillard | 1 | -6/+13 | |
2019-03-08 | Pass World everywhere by reference | David Robillard | 1 | -4/+4 | |
2018-09-23 | Use lowercase namespace names | David Robillard | 1 | -7/+7 | |
2018-09-22 | Use new LV2 include paths | David Robillard | 1 | -1/+1 | |
2018-01-17 | Fix connecting value sequences to CV | David Robillard | 1 | -0/+1 | |
2018-01-16 | Add missing includes | David Robillard | 1 | -0/+1 | |
2017-12-25 | Remove superfluous using namespace declarations | David Robillard | 1 | -2/+0 | |
2017-12-25 | Always use braces | David Robillard | 1 | -3/+6 | |
2017-12-25 | Use nullptr | David Robillard | 1 | -2/+2 | |
2017-12-25 | Remove trivial destructors and use default where possible | David Robillard | 1 | -4/+0 | |
2017-12-16 | Adjust indices when ports are deleted | David Robillard | 1 | -1/+3 | |
2017-03-20 | Fix crash when setting control ports without a value buffer | David Robillard | 1 | -1/+3 | |
Control ports should always have a value buffer for some value of "should", but crashing is never good in any case. | |||||
2017-03-20 | Always use sample accurate controls | David Robillard | 1 | -11/+13 | |
This changes control port buffers to always be sequences of float, splitting cycles internally so nodes with control ports act as if they support sample accurate control input and output. This allows things like having networks of control ports manipulated by the user which are run into CV ports and having sample accurate changes end up in the CV ports even though the values were calculated by plugins with single float ports. Further work is probably necessary to thin and smooth changes that come from a user drag (perhaps there should be a mode for this?) to keep the amount of cycle splitting reasonable, and support for plugins with fixed block length. | |||||
2017-03-20 | Remove dubious Buffer::nframes() method | David Robillard | 1 | -1/+1 | |
2017-03-20 | Fix value buffer update | David Robillard | 1 | -1/+0 | |
2017-03-20 | Fix clear_buffers() prototype | David Robillard | 1 | -2/+2 | |
2017-03-20 | Factor out redundant overloads | David Robillard | 1 | -1/+1 | |
2017-03-20 | Use more efficient memory barriers | David Robillard | 1 | -2/+3 | |
2017-03-20 | Fix zipper noise when dragging CV port values | David Robillard | 1 | -1/+2 | |
2017-02-18 | Reduce Driver coupling | David Robillard | 1 | -4/+3 | |
2017-02-12 | Use smart pointers to handle real-time memory disposal | David Robillard | 1 | -21/+10 | |
2016-12-14 | Fix real-time issues with buffer allocation | David Robillard | 1 | -25/+34 | |
2016-12-14 | Don't use path to determine if nodes are the main graph | David Robillard | 1 | -3/+3 | |
Doing so is slower and touches std::string code that could in theory not be RT-safe (though always is in practice). | |||||
2016-12-13 | Remove virtual inheritance from Port hierarchy | David Robillard | 1 | -2/+56 | |
This was confusing stoat, and is questionable design anyway. The OutputPort functionality has been moved to PortImpl, which is a basic port with buffers suitable for use as an output, and is overridden by InputPort and DuplexPort where necessary. | |||||
2016-12-13 | Fix some real-time safety issues | David Robillard | 1 | -0/+2 | |
2016-10-14 | Fix communication with connected sequence ports | David Robillard | 1 | -1/+0 | |
2016-10-02 | Fix saving and loading subgraphs | David Robillard | 1 | -2/+2 | |