Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2023-05-12 | X11: Use available X extensions by default | David Robillard | 1 | -3/+3 | |
2023-05-03 | Replace strict option with new meson warning level | David Robillard | 1 | -5/+2 | |
2023-05-03 | Fix typo | David Robillard | 1 | -1/+1 | |
2023-05-03 | Use consistent names for internal meson dependencies | David Robillard | 1 | -8/+8 | |
2023-05-03 | Fix internal meson dependencies with static builds | David Robillard | 1 | -1/+8 | |
2023-05-03 | Use consistent meson formatting everywhere | David Robillard | 1 | -12/+17 | |
2023-01-14 | Allow applications to specify the Vulkan library path | David Robillard | 1 | -1/+1 | |
I don't know if vendoring the Vulkan library is appropriate, but regardless, this allows applications to set the name to whatever they want, or specify an absolute path, just in case the standard value baked into Pugl isn't the right one in some situation. | |||||
2023-01-14 | Simplify library build definitions | David Robillard | 1 | -12/+10 | |
2023-01-14 | Fix library naming on Windows | David Robillard | 1 | -0/+8 | |
2023-01-14 | Windows: Disable as many windows.h features as possible | David Robillard | 1 | -1/+53 | |
2023-01-14 | Windows: Fix build with MSVC as C | David Robillard | 1 | -1/+0 | |
2023-01-14 | Windows: Add PUGL_DARK_FRAME hint | David Robillard | 1 | -1/+2 | |
This allows dark applications to visually integrate more nicely in Windows 10. A little thing, but it really goes a long way to make programs not look out of place and half-baked. | |||||
2023-01-08 | Add support for raising windows | David Robillard | 1 | -1/+1 | |
2023-01-07 | MacOS: Consistently use the same flags for ObjC and ObjC++ | David Robillard | 1 | -3/+6 | |
The implementation only uses ObjC, but this is mistake-prone, it's better to just have things set up properly for all of the languages that are present in the build at all. | |||||
2023-01-04 | Add puglUnrealize() | David Robillard | 1 | -2/+2 | |
2022-12-27 | MacOS: Use appleframeworks meson dependencies | Michael Fisher | 1 | -13/+7 | |
2022-11-24 | Use 0BSD for trivial "public domain intent" things | David Robillard | 1 | -1/+1 | |
2022-11-05 | Fix meson warnings on MacOS | David Robillard | 1 | -1/+1 | |
2022-10-07 | Fix MacOS build | David Robillard | 1 | -1/+1 | |
2022-10-07 | Suppress warnings from third-party and system includes | David Robillard | 1 | -8/+30 | |
2022-10-07 | Specify that native (build time) C++ support isn't required | David Robillard | 1 | -1/+1 | |
2022-10-07 | Override pkg-config dependencies within meson | David Robillard | 1 | -5/+23 | |
2022-10-07 | Clean up meson definitions | David Robillard | 1 | -86/+122 | |
2022-08-31 | Add include_directories to pugl_dep | Michael Fisher | 1 | -1/+3 | |
2022-06-28 | Clean up meson configuration | David Robillard | 1 | -6/+6 | |
2022-06-17 | Remove redundant assignment | David Robillard | 1 | -1/+0 | |
2022-06-08 | Separate private and public function implementations | David Robillard | 1 | -1/+6 | |
2022-06-03 | Fix Cairo warnings on MacOS | David Robillard | 1 | -0/+1 | |
2022-05-29 | Make meson configuration more modular | David Robillard | 1 | -133/+5 | |
2022-05-28 | Clean up and strengthen warning flags | David Robillard | 1 | -119/+197 | |
2022-05-23 | Add rich clipboard support | David Robillard | 1 | -2/+5 | |
This implements a more powerful protocol for working with clipboards, which supports datatype negotiation, and fixes various issues by mapping more directly to how things work on X11. | |||||
2022-05-21 | Rename PUGL_UNSUPPORTED_TYPE to be more generic | David Robillard | 1 | -1/+1 | |
2022-04-23 | Move reserved platform defines from code to build system | David Robillard | 1 | -1/+1 | |
Numerous things warn about this, and it's generally a bad idea to put these in the code since it can result in incompatibly compiled code being linked together. Unfortunately this makes building manually (without the build system) more fiddly, but such is life. | |||||
2022-04-23 | Suppress warnings when building with clang on Windows | David Robillard | 1 | -0/+7 | |
2022-04-23 | Build C++ components as C++14 | David Robillard | 1 | -1/+1 | |
2022-04-23 | Strengthen MSVC warnings | David Robillard | 1 | -3/+1 | |
2022-04-21 | Fix MacOS build | David Robillard | 1 | -0/+6 | |
2022-03-14 | Suppress warnings in MinGW | David Robillard | 1 | -0/+6 | |
2022-03-14 | Make C++ compiler optional | David Robillard | 1 | -2/+3 | |
2021-12-17 | Adopt REUSE machine-readable licensing standard | David Robillard | 1 | -0/+3 | |
See https://reuse.software/ for details. | |||||
2021-12-17 | Suppress new warnings in clang-tidy 13 | David Robillard | 1 | -0/+1 | |
2021-11-20 | Suppress warnings in GCC release builds | David Robillard | 1 | -0/+1 | |
2021-05-28 | Split up meson build definitions more | David Robillard | 1 | -34/+6 | |
2021-05-28 | Use files() almost everywhere in meson | David Robillard | 1 | -9/+9 | |
2021-05-28 | Split up warning suppression flags more finely | David Robillard | 1 | -66/+3 | |
This avoids polluting the main list of suppressions with things that are only triggered in tests or examples, making it clearer which warning are present in pugl itself. | |||||
2021-05-28 | Fix build when tests and examples are disabled | David Robillard | 1 | -1/+2 | |
2021-05-27 | Add test for building the implementation as included C++ | David Robillard | 1 | -4/+9 | |
2021-05-27 | Make code build cleanly as C++ | David Robillard | 1 | -0/+3 | |
2021-05-24 | Separate stub backends from other backends | David Robillard | 1 | -6/+4 | |
Stub backends were a dependency of other backends to allow some code reuse. However, that can cause conflicting symbols if multiple backends are linked into the same binary, which should be possible. To avoid this, move the shared code into the platform implementation, and export those symbols so that backends can use them. This adds some semi-public platform-specific API that can only be used by backends included with pugl. They are undocumented, subject to change at any time without a corresponding version change, and may not be used by third parties (for example by custom backends in an application). | |||||
2021-05-24 | MacOS: Fix duplicate PuglStubView symbol | David Robillard | 1 | -1/+1 | |