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

mixxxdj / mixxx / 11413733917

19 Oct 2024 02:20AM CUT coverage: 31.724% (-0.2%) from 31.921%
11413733917

Pull #13599

github

web-flow
Merge 1e57aaeb3 into a716202b0
Pull Request #13599: rendergraph

0 of 1108 new or added lines in 68 files covered. (0.0%)

37 existing lines in 9 files now uncovered.

33281 of 104907 relevant lines covered (31.72%)

48143.57 hits per line

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

0.0
/src/rendergraph/opengl/backend/basenode.h
1
#pragma once
2

3
#include <QMatrix4x4>
4

5
namespace rendergraph {
6
class BaseNode;
7
class Engine;
8
}
9

10
class rendergraph::BaseNode {
11
  protected:
NEW
12
    BaseNode() = default;
×
13

14
  public:
NEW
15
    void setUsePreprocessFlag(bool value) {
×
NEW
16
        m_usePreprocess = value;
×
NEW
17
    }
×
NEW
18
    bool usePreprocess() const {
×
NEW
19
        return m_usePreprocess;
×
20
    }
NEW
21
    virtual bool isSubtreeBlocked() const {
×
NEW
22
        return false;
×
23
    }
NEW
24
    virtual void preprocess() {
×
NEW
25
    }
×
NEW
26
    virtual void render() {
×
NEW
27
    }
×
NEW
28
    virtual void initialize() {
×
NEW
29
    }
×
NEW
30
    virtual void resize(int, int) {
×
NEW
31
    }
×
NEW
32
    void setEngine(Engine* engine) {
×
NEW
33
        m_pEngine = engine;
×
NEW
34
    }
×
NEW
35
    Engine* engine() const {
×
NEW
36
        return m_pEngine;
×
37
    }
38

39
  private:
40
    Engine* m_pEngine{};
41
    bool m_usePreprocess{};
42
};
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc