summaryrefslogtreecommitdiffstats
path: root/src/server/PortImpl.cpp
AgeCommit message (Collapse)AuthorFilesLines
2023-09-23Clean up includes and forward declarationsDavid Robillard1-0/+1
2023-02-03Suppress/fix new warnings in clang-tidy 15David Robillard1-7/+7
2022-12-14Concatenate nested namespacesDavid Robillard1-4/+2
2022-08-18Use consistent spacing for line commentsDavid Robillard1-1/+1
2022-08-18Use a consistent style for FOREACH macrosDavid Robillard1-1/+1
2022-08-18Use a consistent style for empty bracesDavid Robillard1-2/+1
2022-08-18Avoid "else" after "return", "break", and "continue"David Robillard1-3/+9
2022-08-18Use default member initializationDavid Robillard1-12/+0
2022-08-18Clean up includesDavid Robillard1-0/+2
2022-08-18Clean up includesDavid Robillard1-2/+0
2021-01-02Update for latest raulDavid Robillard1-3/+3
2020-12-15Clean up includes in core and serverDavid Robillard1-0/+1
2020-08-03Clean up includesDavid Robillard1-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-02Remove Raul::managed_ptr aliasDavid Robillard1-6/+5
2020-08-02Remove std::shared_ptr aliasDavid Robillard1-0/+1
2020-08-02Fix implicit-fallthrough warningsDavid Robillard1-0/+1
2020-08-02Use consistent naming for context parametersDavid Robillard1-47/+51
2020-08-02Make member functions const or static where possibleDavid Robillard1-2/+2
2020-08-01Use modern castsDavid Robillard1-7/+9
2020-08-01Add explicit accessors to QuarkDavid Robillard1-1/+2
2020-07-18Add missing const specifiersDavid Robillard1-1/+1
2019-12-08Cleanup: Remove unused parameter namesDavid Robillard1-5/+5
2019-12-08Cleanup: Use "auto" to avoid repeating type namesDavid Robillard1-3/+3
2019-03-09Clean up includes and forward declarationsDavid Robillard1-6/+13
2019-03-08Pass World everywhere by referenceDavid Robillard1-4/+4
2018-09-23Use lowercase namespace namesDavid Robillard1-7/+7
2018-09-22Use new LV2 include pathsDavid Robillard1-1/+1
2018-01-17Fix connecting value sequences to CVDavid Robillard1-0/+1
2018-01-16Add missing includesDavid Robillard1-0/+1
2017-12-25Remove superfluous using namespace declarationsDavid Robillard1-2/+0
2017-12-25Always use bracesDavid Robillard1-3/+6
2017-12-25Use nullptrDavid Robillard1-2/+2
2017-12-25Remove trivial destructors and use default where possibleDavid Robillard1-4/+0
2017-12-16Adjust indices when ports are deletedDavid Robillard1-1/+3
2017-03-20Fix crash when setting control ports without a value bufferDavid Robillard1-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-20Always use sample accurate controlsDavid Robillard1-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-20Remove dubious Buffer::nframes() methodDavid Robillard1-1/+1
2017-03-20Fix value buffer updateDavid Robillard1-1/+0
2017-03-20Fix clear_buffers() prototypeDavid Robillard1-2/+2
2017-03-20Factor out redundant overloadsDavid Robillard1-1/+1
2017-03-20Use more efficient memory barriersDavid Robillard1-2/+3
2017-03-20Fix zipper noise when dragging CV port valuesDavid Robillard1-1/+2
2017-02-18Reduce Driver couplingDavid Robillard1-4/+3
2017-02-12Use smart pointers to handle real-time memory disposalDavid Robillard1-21/+10
2016-12-14Fix real-time issues with buffer allocationDavid Robillard1-25/+34
2016-12-14Don't use path to determine if nodes are the main graphDavid Robillard1-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-13Remove virtual inheritance from Port hierarchyDavid Robillard1-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-13Fix some real-time safety issuesDavid Robillard1-0/+2
2016-10-14Fix communication with connected sequence portsDavid Robillard1-1/+0
2016-10-02Fix saving and loading subgraphsDavid Robillard1-2/+2