• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

ossia / score / 30507431705

30 Jul 2026 02:04AM UTC coverage: 15.263% (-0.06%) from 15.321%
30507431705

push

github

jcelerier
audio: simplify pretty name for Default device

0 of 2 new or added lines in 1 file covered. (0.0%)

1386 existing lines in 18 files now uncovered.

30460 of 199565 relevant lines covered (15.26%)

1075.35 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

93.33
/src/plugins/score-plugin-ui/score_plugin_ui.cpp
1
// This is an open source non-commercial project. Dear PVS-Studio, please check
2
// it. PVS-Studio Static Code Analyzer for C, C++ and C#: http://www.viva64.com
3
#include "score_plugin_ui.hpp"
4

5
#include <Engine/Node/SimpleApi.hpp>
6

7
#include <score/plugins/FactorySetup.hpp>
8

9
#include <Avnd/Factories.hpp>
10
#include <Ui/MidiDisplay.hpp>
11
#include <Ui/SignalDisplay.hpp>
12
#include <Ui/TextBox.hpp>
13
#include <Ui/ValueDisplay.hpp>
14
#include <Ui/VUMeter.hpp>
15

16
#include <score_plugin_engine.hpp>
17

18
score_plugin_ui::score_plugin_ui() = default;
32✔
19
score_plugin_ui::~score_plugin_ui() = default;
32✔
20

21
std::vector<score::InterfaceBase*> score_plugin_ui::factories(
1,443✔
22
    const score::ApplicationContext& ctx, const score::InterfaceKey& key) const
23
{
24
  std::vector<score::InterfaceBase*> fx;
1,443✔
25
  oscr::instantiate_fx<Ui::MidiDisplay::Node>(fx, ctx, key);
1,443✔
26
  oscr::instantiate_fx<Ui::SignalDisplay::Node>(fx, ctx, key);
1,443✔
27
  oscr::instantiate_fx<Ui::TextBox::Node>(fx, ctx, key);
1,443✔
28
  oscr::instantiate_fx<Ui::ValueDisplay::Node>(fx, ctx, key);
1,443✔
29
  oscr::instantiate_fx<Ui::VUMeter::Node>(fx, ctx, key);
1,443✔
30
  return fx;
1,443✔
31
}
1,443✔
32

33
auto score_plugin_ui::required() const -> std::vector<score::PluginKey>
39✔
34
{
35
  return {score_plugin_engine::static_key()};
39✔
UNCOV
36
}
×
37

38
#include <score/plugins/PluginInstances.hpp>
39
SCORE_EXPORT_PLUGIN(score_plugin_ui)
39✔
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE TRIAL · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc