MCPcopy Create free account
hub / github.com/DISTRHO/DPF / dpf_plugin_view_create

Function dpf_plugin_view_create

distrho/src/DistrhoUIVST3.cpp:1470–1477  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1468v3_plugin_view** dpf_plugin_view_create(v3_host_application** host, void* instancePointer, double sampleRate);
1469
1470v3_plugin_view** dpf_plugin_view_create(v3_host_application** const host,
1471 void* const instancePointer,
1472 const double sampleRate)
1473{
1474 dpf_plugin_view** const viewptr = new dpf_plugin_view*;
1475 *viewptr = new dpf_plugin_view(host, instancePointer, sampleRate);
1476 return static_cast<v3_plugin_view**>(static_cast<void*>(viewptr));
1477}
1478
1479// --------------------------------------------------------------------------------------------------------------------
1480

Callers 1

create_viewFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected