This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Argument -noreset is removed in XLibre (for more context: https://github.com/orgs/X11Libre/discussions/424 ) | |
| [2026-04-04 11:27:29] (--) Log file renamed from "/var/log/Xorg.pid-2981.log" to "/var/log/Xorg.0.log" | |
| [2026-04-04 11:27:30] | |
| XLibre X Server 1.25.1.2 | |
| X Protocol Version 11, Revision 0 | |
| [2026-04-04 11:27:30] Current Operating System: Linux localhost 6.18.18-gentoo #1 SMP PREEMPT_DYNAMIC Tue Mar 17 11:30:13 CET 2026 x86_64 | |
| [2026-04-04 11:27:30] Kernel command line: init=/usr/lib/systemd/systemd root=/dev/sda4 ro BOOT_IMAGE=/boot/kernel-6.18.18-gentoo root=/dev/sda4 ro mitigations=auto nvidia-drm.modeset=1 | |
| [2026-04-04 11:27:30] Current version of pixman: 0.46.4 | |
| [2026-04-04 11:27:30] Markers: (--) probed, (**) from config file, (==) default setting, | |
| (++) from command line, (!!) notice, (II) informational, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #ifndef AUDIOBUFFER_HPP | |
| #define AUDIOBUFFER_HPP | |
| #include "AudioPacket.hpp" | |
| #include <memory> | |
| #include <cstring> | |
| namespace Audio { | |
| template <class Allocator = std::allocator<float>> class Buffer { | |
| private: | |
| float* audioData; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include "OpenALWrapper.hpp" | |
| #include <dlfcn.h> | |
| LPALCCREATECONTEXT alcCreateContext; | |
| LPALCMAKECONTEXTCURRENT alcMakeContextCurrent; | |
| LPALCPROCESSCONTEXT alcProcessContext; | |
| LPALCSUSPENDCONTEXT alcSuspendContext; | |
| LPALCDESTROYCONTEXT alcDestroyContext; | |
| LPALCGETCURRENTCONTEXT alcGetCurrentContext; | |
| LPALCGETCONTEXTSDEVICE alcGetContextsDevice; |