We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe548c0 commit 0660c33Copy full SHA for 0660c33
2 files changed
CHANGELOG
@@ -3,7 +3,7 @@
3
*******************************************************************************
4
5
=== 1.0.33 ===
6
-
+* Offline tasks are optimized for better floating-point computing.
7
8
=== 1.0.32 ===
9
* Updated build scripts and dependencies.
src/main/plug/sampler_kernel.cpp
@@ -50,6 +50,10 @@ namespace lsp
50
51
status_t sampler_kernel::AFLoader::run()
52
{
53
+ dsp::context_t ctx;
54
+ dsp::start(&ctx);
55
+ lsp_finally { dsp::finish(&ctx); };
56
+
57
return pCore->load_file(pFile);
58
};
59
@@ -74,6 +78,10 @@ namespace lsp
74
78
75
79
status_t sampler_kernel::AFRenderer::run()
76
80
81
82
83
84
77
85
return pCore->render_sample(pFile);
86
87
0 commit comments