aboutsummaryrefslogtreecommitdiffstats
path: root/src/libs/tracing/timelinerenderpass.cpp
blob: 2a0ea718678c262ee3d346d7dce491e7933b9bb7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0

#include "timelinerenderpass.h"

namespace Timeline {

const QVector<QSGNode *> &TimelineRenderPass::State::expandedRows() const
{
    static const QVector<QSGNode *> empty;
    return empty;
}

const QVector<QSGNode *> &TimelineRenderPass::State::collapsedRows() const
{
    static const QVector<QSGNode *> empty;
    return empty;
}

QSGNode *TimelineRenderPass::State::expandedOverlay() const
{
    return nullptr;
}

QSGNode *TimelineRenderPass::State::collapsedOverlay() const
{
    return nullptr;
}

TimelineRenderPass::State::~State()
{
}

TimelineRenderPass::~TimelineRenderPass() {}

} // namespace Timeline