Qt
6.x
The Qt SDK
Toggle main menu visibility
Main Page
Related Pages
Namespaces
Namespace List
Namespace Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
y
z
Typedefs
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
Enumerations
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
Enumerator
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Classes
Class List
Class Hierarchy
Class Members
All
:
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
y
Enumerations
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerator
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Properties
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Related Symbols
:
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
q
r
s
t
u
v
w
Files
File List
File Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerations
_
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Enumerator
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
Macros
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Pages
Loading...
Searching...
No Matches
qsgopenvgadaptation.cpp
Go to the documentation of this file.
1
// Copyright (C) 2016 The Qt Company Ltd.
2
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
3
4
#include "
qsgopenvgadaptation_p.h
"
5
6
#include "
qsgopenvgcontext_p.h
"
7
#include "
qsgopenvgrenderloop_p.h
"
8
9
QT_BEGIN_NAMESPACE
10
11
QSGOpenVGAdaptation::QSGOpenVGAdaptation
(
QObject
*
parent
)
12
:
QSGContextPlugin
(
parent
)
13
{
14
}
15
16
QStringList
QSGOpenVGAdaptation::keys
()
const
17
{
18
return
QStringList
() <<
QLatin1String
(
"openvg"
);
19
}
20
21
QSGContext
*
QSGOpenVGAdaptation::create
(
const
QString
&
key
)
const
22
{
23
Q_UNUSED
(
key
);
24
if
(!instance)
25
instance =
new
QSGOpenVGContext
();
26
return
instance;
27
}
28
29
QSGRenderLoop
*
QSGOpenVGAdaptation::createWindowManager
()
30
{
31
return
new
QSGOpenVGRenderLoop
();
32
}
33
34
QSGContextFactoryInterface::Flags
QSGOpenVGAdaptation::flags
(
const
QString
&
key
)
const
35
{
36
Q_UNUSED
(
key
);
37
return
0;
38
}
39
40
QSGOpenVGContext
*QSGOpenVGAdaptation::instance =
nullptr
;
41
42
QT_END_NAMESPACE
QObject
\inmodule QtCore
Definition
qobject.h:90
QSGContextPlugin
Definition
qsgcontextplugin_p.h:50
QSGContext
The QSGContext holds the scene graph entry points for one QML engine.
Definition
qsgcontext_p.h:74
QSGOpenVGAdaptation::create
QSGContext * create(const QString &key) const override
Definition
qsgopenvgadaptation.cpp:21
QSGOpenVGAdaptation::createWindowManager
QSGRenderLoop * createWindowManager() override
Definition
qsgopenvgadaptation.cpp:29
QSGOpenVGAdaptation::flags
Flags flags(const QString &key) const override
Definition
qsgopenvgadaptation.cpp:34
QSGOpenVGAdaptation::keys
QStringList keys() const override
Definition
qsgopenvgadaptation.cpp:16
QSGOpenVGAdaptation::QSGOpenVGAdaptation
QSGOpenVGAdaptation(QObject *parent=nullptr)
Definition
qsgopenvgadaptation.cpp:11
QSGOpenVGContext
Definition
qsgopenvgcontext_p.h:53
QSGOpenVGRenderLoop
Definition
qsgopenvgrenderloop_p.h:14
QSGRenderLoop
Definition
qsgrenderloop_p.h:34
QStringList
\inmodule QtCore
QString
\macro QT_RESTRICTED_CAST_FROM_ASCII
Definition
qstring.h:127
QT_BEGIN_NAMESPACE
Combined button and popup list for selecting options.
Definition
qstandardpaths_haiku.cpp:21
QT_END_NAMESPACE
Definition
qsharedpointer.cpp:1545
key
GLuint64 key
Definition
qopengles2ext.h:2268
qsgopenvgadaptation_p.h
qsgopenvgcontext_p.h
qsgopenvgrenderloop_p.h
QLatin1String
QLatin1StringView QLatin1String
Definition
qstringfwd.h:31
Q_UNUSED
#define Q_UNUSED(x)
Definition
qtpreprocessorsupport.h:20
parent
IUIAutomationTreeWalker __RPC__deref_out_opt IUIAutomationElement ** parent
Definition
uiaclientinterfaces_p.h:209
qtdeclarative
src
plugins
scenegraph
openvg
qsgopenvgadaptation.cpp
Generated by
1.9.7