forked from CuarzoSoftware/Louvre
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCHANGES
42 lines (31 loc) · 2.25 KB
/
CHANGES
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
37
38
39
40
41
42
Louvre (1.0.0-0)
# Added
* Multi-GPU support is now available.
* Introduction of LObject as the base class facilitates sharing future functionality among classes.
* Pluggable scene and views system introduced for efficient rendering and handling of input events.
* New LAnimation class for creating time-based animations.
* New LTimer class for time-based triggered callbacks.
* New LResource wrapper class for wl_resource structs; each protocol resource or global now has its own LResource subclass.
* Developers can add or modify default compositor globals by overriding the LCompositor::createGlobalsRequest() virtual method.
* New example, louvre-views, a MacOS X lookalike compositor that uses the scene and views system.
* LOutput framebuffers can now be used as textures.
* LOutput now supports framebuffer transforms.
* New LRenderBuffer class for rendering into framebuffers and using them as textures.
* Added support for XDG Decoration, Presentation Time, and Linux DMA-Buf protocols.
* Libseat can now be enabled or disabled using the LOUVRE_ENABLE_LIBSEAT environment variable.
* Single, double, or triple buffering can now be configured using SRM library environment variables.
# Changed
* LCompositor::start() method is now non-blocking; developers can control the rate of compositor events processing using the pollable LCompositor::fd() and LCompositor::processLoop() methods.
* New directory structure for protocol interfaces located in src/lib/protocols.
* Clients can now bind multiple times to the wl_seat global, resolving the Firefox issue where it could only receive pointer events.
* Clients can now create a wl_data_device for each wl_seat.
* Clients can now bind multiple times to the wl_subcompositor global.
* Ping() and pong() methods moved from XDG Shell to LClient class.
* The DRM graphic backend now uses the SRM library.
# Removed
* X11 graphic and input backends are no longer supported.
* LOutputManager class has been eliminated, and its functionality has been integrated into the LSeat class.
-- Eduardo Hopperdietzel <[email protected]> Sun, 12 Nov 2023 23:22:58 -0300
SRM (0.1.0-1)
* First release.
-- Eduardo Hopperdietzel <[email protected]> Sat, 21 Jan 2023 18:41:12 -0300