Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2019-12-08 | Cleanup: Avoid parameter copying overhead | David Robillard | 1 | -3/+3 | |
2019-12-08 | Cleanup: Use std::make_shared | David Robillard | 1 | -1/+1 | |
2019-03-09 | Clean up includes and forward declarations | David Robillard | 1 | -23/+26 | |
2019-03-09 | Localise dependency on boost::format and improve logging API | David Robillard | 1 | -2/+2 | |
2019-03-09 | Use smart pointers over manual memory management | David Robillard | 1 | -16/+14 | |
2019-03-08 | Pass World everywhere by reference | David Robillard | 1 | -29/+29 | |
2018-09-23 | Use lowercase namespace names | David Robillard | 1 | -10/+10 | |
2018-09-22 | Use new LV2 include paths | David Robillard | 1 | -2/+2 | |
2018-01-21 | Add URI class and remove use of Raul::URI | David Robillard | 1 | -2/+2 | |
2018-01-17 | Clean up Engine component memory management and trim include tree | David Robillard | 1 | -38/+25 | |
2017-12-25 | Remove superfluous using namespace declarations | David Robillard | 1 | -2/+0 | |
2017-12-25 | Use nullptr | David Robillard | 1 | -5/+5 | |
2017-12-17 | Simplify Tee | David Robillard | 1 | -9/+8 | |
2017-12-16 | Remove Engine dependency from Task | David Robillard | 1 | -1/+1 | |
2017-04-12 | Refuse to start if driver requires a graph and one is not provided | David Robillard | 1 | -0/+6 | |
2017-04-12 | Fix const correctness | David Robillard | 1 | -1/+1 | |
2017-03-20 | Revert removal of DirectDriver and fix test suite | David Robillard | 1 | -0/+7 | |
2017-03-20 | Fix event timing with PortAudio driver | David Robillard | 1 | -3/+3 | |
2017-03-20 | Fix event timing and remove vestigial DirectDriver | David Robillard | 1 | -15/+1 | |
2017-03-19 | Shrink status bar text and fix initial DSP load display | David Robillard | 1 | -23/+21 | |
2017-02-18 | Add experimental PortAudio driver | David Robillard | 1 | -31/+57 | |
2017-02-18 | Reduce Driver coupling | David Robillard | 1 | -2/+20 | |
2017-02-15 | Move Properties out of Resource | David Robillard | 1 | -4/+4 | |
2017-02-12 | Use smart pointers to handle real-time memory disposal | David Robillard | 1 | -1/+1 | |
2017-02-12 | Fix check for pending events | David Robillard | 1 | -1/+1 | |
2017-02-12 | Fix memory leaks | David Robillard | 1 | -2/+12 | |
2016-12-13 | Fix some real-time safety issues | David Robillard | 1 | -1/+10 | |
2016-10-14 | Fix LV2 initialisation | David Robillard | 1 | -0/+6 | |
2016-10-02 | Implement microsecond clock for Linux and OSX | David Robillard | 1 | -8/+1 | |
2016-10-02 | Defer graph compilation in atomic bundles | David Robillard | 1 | -3/+5 | |
This avoids situations like compiling a graph hundreds of times when it is loaded because it has hundreds of nodes and each event triggers a re-compile. This speeds things up dramatically, but exacerbates the theoretical problem of there not being enough time in a cycle to execute a bundle. As far as I can tell, the execute phase of events is very fast, so hundreds or thousands can easily run in a tiny fraction of the process cycle, but this still needs resolution to be truly hard real-time. What probably needs to happen is that all context and state used to process is moved to CompiledGraph and nodes do not access their own fields at all, but have some references into the CompiledGraph. This way, a compiled graph is separate from its "source code", and an old one could continue to be run while a new one is beng applied across several cycles. | |||||
2016-10-02 | Show audio and load information in status line | David Robillard | 1 | -5/+58 | |
2016-10-02 | Add parallel graph execution | David Robillard | 1 | -12/+77 | |
2016-10-01 | Fix OSX build | David Robillard | 1 | -2/+2 | |
2016-09-29 | Atomic bundle execution | David Robillard | 1 | -0/+1 | |
2016-09-20 | Use C++11 thread_local | David Robillard | 1 | -2/+2 | |
2016-09-18 | Add fancy communication logging | David Robillard | 1 | -2/+19 | |
2016-09-11 | Remove last vestiges of multiple run contexts | David Robillard | 1 | -13/+13 | |
2016-07-31 | Support thread-safe state restoration | David Robillard | 1 | -0/+1 | |
2016-07-30 | Add undo support | David Robillard | 1 | -4/+10 | |
2016-03-14 | Load default plugin state | David Robillard | 1 | -0/+4 | |
Based on a patch from Hanspeter Portner. | |||||
2015-10-25 | Create all graphs the same way | David Robillard | 1 | -89/+19 | |
This ensures that subgraphs always have the standard control ports, so they are valid Ingen graphs on their own.. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5783 a436a847-0d15-0410-975c-d299462d15a1 | |||||
2015-04-05 | Use a fixed max buffer size to avoid several values. | David Robillard | 1 | -1/+2 | |
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5662 a436a847-0d15-0410-975c-d299462d15a1 | |||||
2015-02-24 | Use sequence buffer size from Jack. | David Robillard | 1 | -3/+3 | |
Patch from Hanspeter Portner. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5603 a436a847-0d15-0410-975c-d299462d15a1 | |||||
2015-02-17 | Delete trailing whitespace. | David Robillard | 1 | -1/+1 | |
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5582 a436a847-0d15-0410-975c-d299462d15a1 | |||||
2015-02-09 | Fix broadcasting to several clients. | David Robillard | 1 | -6/+6 | |
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5550 a436a847-0d15-0410-975c-d299462d15a1 | |||||
2015-02-07 | Demodularize socket stuff. | David Robillard | 1 | -1/+18 | |
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5535 a436a847-0d15-0410-975c-d299462d15a1 | |||||
2014-11-17 | Fix a few minor/unlikely memory errors. | David Robillard | 1 | -4/+4 | |
Handle Glade widget loading failure more gracefully. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5486 a436a847-0d15-0410-975c-d299462d15a1 | |||||
2014-03-31 | Yet another attempt at fixing event deadlock issues. | David Robillard | 1 | -1/+1 | |
This time, completely isolate head and tail pointers to read and write methods, and never empty the list. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5355 a436a847-0d15-0410-975c-d299462d15a1 | |||||
2014-01-04 | Fix event throughput. | David Robillard | 1 | -1/+1 | |
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5261 a436a847-0d15-0410-975c-d299462d15a1 | |||||
2014-01-04 | More attempts at fixing deadlocks on exit. | David Robillard | 1 | -6/+7 | |
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5260 a436a847-0d15-0410-975c-d299462d15a1 |