Home
last modified time | relevance | path

Searched refs:CompositorInterface (Results 1 – 25 of 94) sorted by relevance

1234

/dports/x11/kf5-kwayland/kwayland-5.89.0/src/server/
H A Dcompositor_interface.cpp16 class CompositorInterface::Private : public Global::Private
19 Private(CompositorInterface *q, Display *d);
34 CompositorInterface *q;
39 const quint32 CompositorInterface::Private::s_version = 4;
41 CompositorInterface::Private::Private(CompositorInterface *q, Display *d) in Private()
51 CompositorInterface::CompositorInterface(Display *display, QObject *parent) in CompositorInterface() function in KWayland::Server::CompositorInterface
56 CompositorInterface::~CompositorInterface() = default;
58 void CompositorInterface::Private::bind(wl_client *client, uint32_t version, uint32_t id) in bind()
70 void CompositorInterface::Private::unbind(wl_resource *resource) in unbind()
81 void CompositorInterface::Private::createSurface(wl_client *client, wl_resource *resource, uint32_t… in createSurface()
[all …]
H A Dcompositor_interface.h28 class KWAYLANDSERVER_EXPORT CompositorInterface : public Global
32 ~CompositorInterface() override;
45 explicit CompositorInterface(Display *display, QObject *parent = nullptr);
H A Dregion_interface.h20 class CompositorInterface; variable
53 friend class CompositorInterface;
54 explicit RegionInterface(CompositorInterface *parent, wl_resource *parentResource);
H A Dregion_interface.cpp19 Private(CompositorInterface *compositor, RegionInterface *q, wl_resource *parentResource);
41 RegionInterface::Private::Private(CompositorInterface *compositor, RegionInterface *q, wl_resource … in Private()
77 RegionInterface::RegionInterface(CompositorInterface *parent, wl_resource *parentResource) in RegionInterface()
H A Dsurface_interface.h28 class CompositorInterface; variable
373 friend class CompositorInterface;
382 explicit SurfaceInterface(CompositorInterface *parent, wl_resource *parentResource);
/dports/x11/plasma5-kwayland-server/kwayland-server-5.23.5/src/server/
H A Dcompositor_interface.cpp21 CompositorInterfacePrivate(CompositorInterface *q, Display *display);
23 CompositorInterface *q;
31 CompositorInterfacePrivate::CompositorInterfacePrivate(CompositorInterface *q, Display *display) in CompositorInterfacePrivate()
58 CompositorInterface::CompositorInterface(Display *display, QObject *parent) in CompositorInterface() function in KWaylandServer::CompositorInterface
64 CompositorInterface::~CompositorInterface() in ~CompositorInterface()
68 Display *CompositorInterface::display() const in display()
H A Dcompositor_interface.h25 class KWAYLANDSERVER_EXPORT CompositorInterface : public QObject
30 explicit CompositorInterface(Display *display, QObject *parent = nullptr);
31 ~CompositorInterface() override;
H A Dsurface_interface.h24 class CompositorInterface; variable
75 explicit SurfaceInterface(CompositorInterface *compositor, wl_resource *resource);
93 CompositorInterface *compositor() const;
/dports/x11-wm/chamfer/chamferwm-d0916ee/src/
H A DCompositorResource.h13 …ureBase(uint, uint, VkFormat, const VkComponentMapping *, uint, const class CompositorInterface *);
26 const class CompositorInterface *pcomp;
38 …eStaged(uint, uint, VkFormat, const VkComponentMapping *, uint, const class CompositorInterface *);
53 TexturePixmap(uint, uint, const VkComponentMapping *, uint, const class CompositorInterface *);
75 …TextureHostPointer(uint, uint, const VkComponentMapping *, uint, const class CompositorInterface *…
91 Texture(uint, uint, const VkComponentMapping *, uint, const class CompositorInterface *);
97 Buffer(uint, VkBufferUsageFlagBits, const class CompositorInterface *);
102 const class CompositorInterface *pcomp;
115 ShaderModule(const char *, const Blob *, const class CompositorInterface *);
118 const class CompositorInterface *pcomp;
[all …]
H A Dcompositor.h23 friend class CompositorInterface; variable
25 Drawable(Pipeline *, CompositorInterface *);
32 class CompositorInterface *pcomp;
43 friend class CompositorInterface; variable
45 ColorFrame(const char *[Pipeline::SHADER_MODULE_COUNT], class CompositorInterface *);
59 friend class CompositorInterface; variable
90 class CompositorInterface{
121 CompositorInterface(const Configuration *);
122 virtual ~CompositorInterface();
309 class X11Compositor : public CompositorInterface{
[all …]
H A Dconfig.h177 class CompositorInterface{
179 CompositorInterface();
180 ~CompositorInterface();
197 static CompositorInterface defaultInt;
198 static CompositorInterface *pcompositorInt;
201 class CompositorProxy : public CompositorInterface, public boost::python::wrapper<CompositorInterfa…
209 CompositorConfig(CompositorInterface *);
211 CompositorInterface *pcompositorInt;
H A Dconfig.cpp706 CompositorInterface::~CompositorInterface(){ in ~CompositorInterface()
710 void CompositorInterface::Bind(boost::python::object obj){ in Bind()
711 CompositorInterface &compositorInt = boost::python::extract<CompositorInterface&>(obj)(); in Bind()
716 CompositorInterface CompositorInterface::defaultInt;
717 CompositorInterface *CompositorInterface::pcompositorInt = &CompositorInterface::defaultInt;
1130 .def_readwrite("scissoring",&CompositorInterface::scissoring) in BOOST_PYTHON_MODULE()
1135 [](CompositorInterface &compositor){ in BOOST_PYTHON_MODULE()
1141 [](CompositorInterface &compositor, bool enableAnimation){ in BOOST_PYTHON_MODULE()
1150 [](CompositorInterface &compositor){ in BOOST_PYTHON_MODULE()
1163 .def_readwrite("fontName",&CompositorInterface::fontName) in BOOST_PYTHON_MODULE()
[all …]
H A DCompositorFont.h38 friend class CompositorInterface; variable
40 TextEngine(const char *, uint, class CompositorInterface *);
58 class CompositorInterface *pcomp;
H A Dcompositor.cpp235 CompositorInterface::~CompositorInterface(){ in ~CompositorInterface()
239 void CompositorInterface::InitializeRenderEngine(){ in InitializeRenderEngine()
631 void CompositorInterface::InitializeSwapchain(){ in InitializeSwapchain()
715 void CompositorInterface::DestroyRenderEngine(){ in DestroyRenderEngine()
751 void CompositorInterface::DestroySwapchain(){ in DestroySwapchain()
771 void CompositorInterface::AddDamageRegion(const VkRect2D *prect){ in AddDamageRegion()
813 void CompositorInterface::WaitIdle(){ in WaitIdle()
868 bool CompositorInterface::PollFrameFence(bool suspend){ in PollFrameFence()
1215 void CompositorInterface::Present(){ in Present()
1308 void CompositorInterface::ClearBackground(){ in ClearBackground()
[all …]
H A Dmain.cpp107 …RunCompositor(std::vector<StackAppendixElement> *_pstackAppendix, Config::CompositorInterface *_pc… in RunCompositor()
161 …Compositor::CompositorInterface *pcompInt = dynamic_cast<Compositor::CompositorInterface *>(pcomp); in SetupContainer()
901 …NullCompositor(Config::CompositorInterface *_pcompositorInt) : Compositor::NullCompositor(), RunCo… in NullCompositor()
963 Config::CompositorInterface::pcompositorInt->deviceIndex = deviceIndexOpt.Get(); in main()
965 Config::CompositorInterface::pcompositorInt->debugLayers = true; in main()
967 Config::CompositorInterface::pcompositorInt->scissoring = false; in main()
969 Config::CompositorInterface::pcompositorInt->hostMemoryImport = false; in main()
971 Config::CompositorInterface::pcompositorInt->unredirOnFullscreen = true; in main()
998 pcomp = new NullCompositor(Config::CompositorInterface::pcompositorInt); in main()
1001 …Compositor(&pbackend->stackAppendix,pbackend11,shaderPaths,Config::CompositorInterface::pcomposito… in main()
[all …]
/dports/x11/kf5-kwayland/kwayland-5.89.0/autotests/client/
H A Dtest_wayland_region.cpp38 KWayland::Server::CompositorInterface *m_compositorInterface;
131 …QSignalSpy regionCreatedSpy(m_compositorInterface, &KWayland::Server::CompositorInterface::regionC… in testCreate()
149 …QSignalSpy regionCreatedSpy(m_compositorInterface, &KWayland::Server::CompositorInterface::regionC… in testCreateWithRegion()
167 …QSignalSpy regionCreatedSpy(m_compositorInterface, &KWayland::Server::CompositorInterface::regionC… in testCreateUniquePtr()
184 …QSignalSpy regionCreatedSpy(m_compositorInterface, &KWayland::Server::CompositorInterface::regionC… in testAdd()
219 …QSignalSpy regionCreatedSpy(m_compositorInterface, &KWayland::Server::CompositorInterface::regionC… in testRemove()
282 QSignalSpy regionCreatedSpy(m_compositorInterface, &CompositorInterface::regionCreated); in testDisconnect()
/dports/x11/plasma5-kwayland-server/kwayland-server-5.23.5/autotests/server/
H A Dtest_layershellv1_interface.cpp112 CompositorInterface *m_serverCompositor;
129 m_serverCompositor = new CompositorInterface(&m_display, this); in initTestCase()
199 QSignalSpy serverSurfaceCreatedSpy(m_serverCompositor, &CompositorInterface::surfaceCreated); in testDesiredSize()
228 QSignalSpy serverSurfaceCreatedSpy(m_serverCompositor, &CompositorInterface::surfaceCreated); in testScope()
262 QSignalSpy serverSurfaceCreatedSpy(m_serverCompositor, &CompositorInterface::surfaceCreated); in testAnchor()
295 QSignalSpy serverSurfaceCreatedSpy(m_serverCompositor, &CompositorInterface::surfaceCreated); in testMargins()
325 QSignalSpy serverSurfaceCreatedSpy(m_serverCompositor, &CompositorInterface::surfaceCreated); in testExclusiveZone()
389 QSignalSpy serverSurfaceCreatedSpy(m_serverCompositor, &CompositorInterface::surfaceCreated); in testExclusiveEdge()
434 QSignalSpy serverSurfaceCreatedSpy(m_serverCompositor, &CompositorInterface::surfaceCreated); in testLayer()
467 … QSignalSpy serverPanelSurfaceCreatedSpy(m_serverCompositor, &CompositorInterface::surfaceCreated); in testPopup()
H A Dtest_keyboard_shortcuts_inhibitor_interface.cpp84 CompositorInterface *m_serverCompositor;
101 m_serverCompositor = new CompositorInterface(&m_display, this); in initTestCase()
104 …connect(m_serverCompositor, &CompositorInterface::surfaceCreated, this, [this](SurfaceInterface *s… in initTestCase()
146 QSignalSpy surfaceSpy(m_serverCompositor, &CompositorInterface::surfaceCreated); in initTestCase()
/dports/x11/plasma5-kwayland-server/kwayland-server-5.23.5/autotests/client/
H A Dtest_wayland_slide.cpp36 KWaylandServer::CompositorInterface *m_compositorInterface;
98 m_compositorInterface = new CompositorInterface(m_display, m_display); in init()
137 …QSignalSpy serverSurfaceCreated(m_compositorInterface, &KWaylandServer::CompositorInterface::surfa… in testCreate()
166 QSignalSpy serverSurfaceCreated(m_compositorInterface, &CompositorInterface::surfaceCreated); in testSurfaceDestroy()
H A Dtest_wayland_contrast.cpp39 KWaylandServer::CompositorInterface *m_compositorInterface;
101 m_compositorInterface = new CompositorInterface(m_display, m_display); in init()
141 …QSignalSpy serverSurfaceCreated(m_compositorInterface, &KWaylandServer::CompositorInterface::surfa… in testCreate()
175 …QSignalSpy serverSurfaceCreated(m_compositorInterface, &KWaylandServer::CompositorInterface::surfa… in testSurfaceDestroy()
H A Dtest_wayland_blur.cpp36 KWaylandServer::CompositorInterface *m_compositorInterface;
99 m_compositorInterface = new CompositorInterface(m_display, m_display); in init()
138 …QSignalSpy serverSurfaceCreated(m_compositorInterface, &KWaylandServer::CompositorInterface::surfa… in testCreate()
164 …QSignalSpy serverSurfaceCreated(m_compositorInterface, &KWaylandServer::CompositorInterface::surfa… in testSurfaceDestroy()
H A Dtest_shadow.cpp40 CompositorInterface *m_compositorInterface = nullptr;
59 m_compositorInterface = new CompositorInterface(m_display, m_display); in init()
130 QSignalSpy surfaceCreatedSpy(m_compositorInterface, &CompositorInterface::surfaceCreated); in testCreateShadow()
187 QSignalSpy surfaceCreatedSpy(m_compositorInterface, &CompositorInterface::surfaceCreated); in testShadowElements()
244 QSignalSpy serverSurfaceCreated(m_compositorInterface, &CompositorInterface::surfaceCreated); in testSurfaceDestroy()
H A Dtest_xdg_foreign.cpp46 QPointer<KWaylandServer::CompositorInterface> m_compositorInterface;
126 m_compositorInterface = new CompositorInterface(m_display, m_display); in init()
173 …erverSurfaceCreated(m_compositorInterface.data(), &KWaylandServer::CompositorInterface::surfaceCre… in doExport()
195 …aceInterfaceCreated(m_compositorInterface.data(), &KWaylandServer::CompositorInterface::surfaceCre… in doExport()
303 …erverSurfaceCreated(m_compositorInterface.data(), &KWaylandServer::CompositorInterface::surfaceCre… in testExportTwoTimes()
336 …erverSurfaceCreated(m_compositorInterface.data(), &KWaylandServer::CompositorInterface::surfaceCre… in testImportTwoTimes()
H A Dtest_wayland_surface.cpp59 KWaylandServer::CompositorInterface *m_compositorInterface;
91 m_compositorInterface = new CompositorInterface(m_display, m_display); in init()
184 …QSignalSpy serverSurfaceCreated(m_compositorInterface, &KWaylandServer::CompositorInterface::surfa… in testStaticAccessor()
732 QSignalSpy serverSurfaceCreated(m_compositorInterface, &CompositorInterface::surfaceCreated); in testScale()
855 QSignalSpy serverSurfaceCreated(m_compositorInterface, &CompositorInterface::surfaceCreated); in testUnmapOfNotMappedSurface()
880 QSignalSpy serverSurfaceCreated(m_compositorInterface, &CompositorInterface::surfaceCreated); in testSurfaceAt()
915 QSignalSpy serverSurfaceCreated(m_compositorInterface, &CompositorInterface::surfaceCreated); in testDestroyAttachedBuffer()
952 QSignalSpy surfaceCreatedSpy(m_compositorInterface, &CompositorInterface::surfaceCreated); in testDestroyWithPendingCallback()
988 QSignalSpy surfaceCreatedSpy(m_compositorInterface, &CompositorInterface::surfaceCreated); in testDisconnect()
1032 QSignalSpy surfaceCreatedSpy(m_compositorInterface, &CompositorInterface::surfaceCreated); in testOutput()
[all …]
H A Dtest_server_side_decoration.cpp38 KWaylandServer::CompositorInterface *m_compositorInterface = nullptr;
96 m_compositorInterface = new CompositorInterface(m_display, m_display); in init()
159 QSignalSpy serverSurfaceCreated(m_compositorInterface, &CompositorInterface::surfaceCreated); in testCreate()
231 QSignalSpy serverSurfaceCreated(m_compositorInterface, &CompositorInterface::surfaceCreated); in testRequest()
281 QSignalSpy serverSurfaceCreated(m_compositorInterface, &CompositorInterface::surfaceCreated); in testSurfaceDestroy()

1234