summaryrefslogtreecommitdiff
path: root/doc/public/meson.build
AgeCommit message (Collapse)AuthorFilesLines
2023-02-05Remove unused _cairo_tee_surface_find_matchUli Schlachter1-1/+0
A little history digging shows that we only ever had one caller of _cairo_tee_surface_find_match. Commit 658cdc7c9a "Introduce cairo_tee_surface_t" added this code to _cairo_surface_clone_similar(): if (src->type == CAIRO_SURFACE_TYPE_TEE) { cairo_surface_t *match; match = _cairo_tee_surface_find_match (src, surface->backend, content); if (match != NULL) src = match; } Then, two years later in 2011, commit af9fbd176b1 "Introduce a new compositor architecture" removed _cairo_surface_clone_similar() and thus this code became unused. This commit drops this unused code. Signed-off-by: Uli Schlachter <psychon@znc.in>
2023-01-26Simplify generating dwrite-fonts docsKhaled Hosny1-0/+1
Tell gtk-doc to scan .cpp files instead of making a proxy .c file.
2022-02-25Remove cairo-drmEmmanuele Bassi1-1/+0
The DRM backend has always been a science experiment, but now it hasn't been built in more than 10 years, and it's completely broken.
2021-08-14meson: Build the API referenceEmmanuele Bassi1-0/+157
The Meson build system should build the API reference using gtk-doc, like the Autotools build does. The option is called `gtk_doc`, which matches the existing practices in various projects using Meson and gtk-doc.