summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* tests: Add tests for pango_font_describefix-font-roundtripMatthias Clasen2021-01-242-1/+72
| | | | | | | | | Test that round-tripping through pango_font_describe works. This is currently broken for scalable bitmap fonts, such as color Emoji fonts. We skip the test on OS X where we are most likely missing the fonts.
* Fix pango_font_describe for Emoji fontsMatthias Clasen2021-01-241-1/+18
| | | | | | | | | | | We are using the size from the FcPattern. For scalable bitmap fonts, this has been scaled to match the requested pixel size. To make a font description that can be turned back into a FcPattern and roundtrip successfully, we need to undo that scaling. Thankfully, fontconfig leaves the pixelsizefixupfactor in the pattern, so it is easy to do. Fixes: #530
* tests: Fix an errant unrefMatthias Clasen2021-01-241-1/+0
| | | | pango_cairo_font_map_get_default is transfer none.
* Merge branch 'fix-test-output' into 'master'Matthias Clasen2021-01-241-5/+10
|\ | | | | | | | | | | | | tests: Avoid locale dependency Closes #474 See merge request GNOME/pango!279
| * tests: Avoid locale dependencyfix-test-outputMatthias Clasen2021-01-231-5/+10
|/ | | | | | | When producing output, use the C locale for formatting floating point numbers, to avoid locale dependent output. Fixes: #474
* Add a valgrind suppression fileMatthias Clasen2021-01-231-0/+86
| | | | | | Suggested by Philip Withnall. Fixes: #415
* Merge branch 'attr-list-overflow' into 'master'Matthias Clasen2021-01-241-1/+8
|\ | | | | | | | | | | | | Attr list overflow Closes #455 See merge request GNOME/pango!278
| * Avoid overflow when updating attr listsattr-list-overflowMatthias Clasen2021-01-231-1/+4
| | | | | | | | | | | | | | | | | | | | | | Avoid overflow when updating the end_index of attributes in pango_attr_list_update. This is a real risk, because end_index is commonly set to G_MAXUINT to mean 'until the very end'. Test included. Fixes: #455
| * Add some preconditionsMatthias Clasen2021-01-231-0/+4
| | | | | | | | | | The arguments to pango_attr_list_update are ints, but negative numbers don't make sense here.
* | Merge branch 'fix-test-leak' into 'master'Matthias Clasen2021-01-233-2/+2
|\ \ | |/ | | | | | | Fix test leak See merge request GNOME/pango!276
| * ci: Make asan build must-passfix-test-leakMatthias Clasen2021-01-231-1/+0
| | | | | | | | We have a green check there, lets keep it that way.
| * tests: Plug a memory leakMatthias Clasen2021-01-231-0/+1
| | | | | | | | | | We just plugged all the memory leaks in tests, lets not introduce new ones.
| * ci: Don't print asan suppressionsMatthias Clasen2021-01-231-1/+1
| | | | | | | | | | That breaks the tests, and misses the point of suppressing these leaks in the first place.
* | Merge branch 'font-face-fixes' into 'master'Matthias Clasen2021-01-232-4/+3
|\ \ | |/ |/| | | | | | | | | Font face fixes Closes #494 and #528 See merge request GNOME/pango!277
| * tests: Don't assert too muchfont-face-fixesMatthias Clasen2021-01-231-1/+1
| | | | | | | | | | | | | | | | | | | | We can't guarantee uniqueness of face names, so we don't know that getting a face by name will return the same face we got the name from (which is true if faces are unique). So, just assert that we get a face with the same name. Fixes: #494
| * Don't promise too muchMatthias Clasen2021-01-231-3/+2
|/ | | | | | | | The docs were claiming that face names are unique, but we don't know that, and it doesn't hold in practice. Fixes: #528
* 1.48.11.48.1Matthias Clasen2021-01-212-1/+11
|
* Merge branch 'vertical' into 'master'Matthias Clasen2021-01-211-3/+6
|\ | | | | | | | | | | | | Translate origin point for vertical layout Closes #454 See merge request GNOME/pango!168
| * Translate origin point for vertical layoutPeng Wu2021-01-201-3/+6
| | | | | | | | | | The origin point for vertical layout needs to be translated for cairo rendering from the horizontal origin to the vertical origin.
* | Merge branch 'fix' into 'master'Matthias Clasen2021-01-212-1/+15
|\ \ | |/ |/| | | | | | | | | Fix the length checking Closes #526 See merge request GNOME/pango!273
| * Fix the length checkingWeng Xuetian2021-01-142-1/+15
| | | | | | | | Closes #526
* | Merge branch 'lsan_slice' into 'master'Matthias Clasen2021-01-207-3/+13
|\ \ | | | | | | | | | | | | Force malloc of g_slices in asan build See merge request GNOME/pango!262
| * | Apply 1 suggestion(s) to 1 file(s)Matthias Clasen2021-01-201-1/+1
| | |
| * | Remove libc from leak suppression listSzunti2021-01-161-1/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | Every program starts in __libc_start_main, so this would suppress everything. This doesn't happen in practice because asan by default is unable to unwind the stack. Setting ASAN_OPTIONS=fast_unwind_on_malloc=0,malloc_context_size=15 can unwind the stack, and if malloc_context_size is large enough it will indeed suppress everything.
| * | Fix leaks found by asanSzunti2021-01-165-2/+11
| | |
| * | Force malloc of g_slices in asan buildSzunti2021-01-161-0/+2
| | | | | | | | | | | | Otherwise leaks could be missed.
* | | Merge branch 'return-null' into 'master'Matthias Clasen2021-01-201-1/+1
|\ \ \ | |/ / |/| | | | | | | | | | | | | | use g_critical instead of g_error Closes #527 See merge request GNOME/pango!275
| * | use g_critical instead of g_errorNaveen M K2021-01-191-1/+1
|/ / | | | | | | | | according to docs of pango_cairo_font_map_new() it shouldn't crash the application by calling g_error. Instead, it should return NULL and it can log that using g_critical.
* | Merge branch 'macos-ci-cairo' into 'master'Matthias Clasen2021-01-152-2/+12
|\ \ | |/ |/| | | | | Macos ci cairo See merge request GNOME/pango!274
| * ci: Switch back to using cairo mastermacos-ci-cairoMatthias Clasen2021-01-151-2/+2
| | | | | | | | The MacOS build fix has been merged in cairo.
| * Add a gobject-introspection subprojectMatthias Clasen2021-01-151-0/+10
|/
* Merge branch 'dab_fix_gir_subproject' into 'master'Matthias Clasen2021-01-131-1/+6
|\ | | | | | | | | meson: add harfbuzz gobject dependency See merge request GNOME/pango!271
| * meson: add harfbuzz gobject dependencyStéphane Cerveau2021-01-131-1/+6
|/ | | | | | | | When harfbuzz is built as a subproject, the gobject dep should be used to generate the gir. The build was failing when the harfbuzz gir was not available system wide.
* Merge branch 'ci-no-detached-builds' into 'master'Matthias Clasen2021-01-121-3/+12
|\ | | | | | | | | Ci no detached builds See merge request GNOME/pango!272
| * ci: Specify 'only' for other jobsci-no-detached-buildsMatthias Clasen2021-01-121-3/+12
|/ | | | Otherwise MRs will only run macOS jobs.
* Merge branch 'matthiasc/for-master' into 'master'Matthias Clasen2021-01-042-12/+0
|\ | | | | | | | | coretext: Cleanup See merge request GNOME/pango!269
| * coretext: CleanupMatthias Clasen2021-01-042-12/+0
|/ | | | Remove the unused face setter and field.
* Merge branch 'macos-tests' into 'master'Matthias Clasen2021-01-044-1/+58
|\ | | | | | | | | | | | | ci: Run tests on MacOS Closes #524 See merge request GNOME/pango!268
| * ci: Run tests on MacOSmacos-testsMatthias Clasen2021-01-041-0/+3
| |
| * macos: Implement pango_font_get_faceMatthias Clasen2021-01-043-1/+55
|/ | | | | | | This was returning NULL for coretext fonts. Good that we have tests for this. Fixes: #524
* Merge branch 'hb-coretext' into 'master'Matthias Clasen2021-01-042-2/+3
|\ | | | | | | | | Enable coretext for the harfbuzz subproject See merge request GNOME/pango!267
| * Enable coretext for the harfbuzz subprojecthb-coretextMatthias Clasen2021-01-032-2/+3
|/ | | | | On OS X, we need hb_coretext_font_create, so pass coretext=enabled to harfbuzz.
* Merge branch 'wip/smcv/use-g-test-skip-again' into 'master'Matthias Clasen2021-01-045-15/+1
|\ | | | | | | | | Revert "testsuite: Don't use g_test_skip" See merge request GNOME/pango!246
| * Bump meson requirementwip/smcv/use-g-test-skip-againMatthias Clasen2021-01-031-1/+1
| | | | | | | | | | The meson versions 0.55.0 to 0.55.2 had problems with skipped tests. Things work again with 0.55.3,
| * Revert "testsuite: Don't use g_test_skip"Simon McVittie2021-01-034-14/+0
|/ | | | | | | | | | | When versions of Meson with bug https://github.com/mesonbuild/meson/issues/7515 are no longer widespread, the Pango test suite should diagnose which tests are skipped again. Versions 0.55.0 to 0.55.2 inclusive have the bug; version 0.55.3 is OK. This reverts commit 440f9c2609b7f5f9d8f65619b029a5eb660de88b. Signed-off-by: Simon McVittie <smcv@debian.org>
* Merge branch 'matthiasc/for-master' into 'master'Matthias Clasen2021-01-043-3/+3
|\ | | | | | | | | Matthiasc/for master See merge request GNOME/pango!266
| * ci: Update meson in the Fedora imageMatthias Clasen2021-01-032-2/+2
| | | | | | | | Bump meson to 0.56.0. The new image is fedora:v4.
| * Docs: fix a typoMatthias Clasen2021-01-031-1/+1
|/
* Merge branch 'limit-macos-ci' into 'master'Matthias Clasen2021-01-041-0/+3
|\ | | | | | | | | ci: Limit MacOS ci builds See merge request GNOME/pango!265
| * ci: Limit MacOS ci buildslimit-macos-ciMatthias Clasen2021-01-031-0/+3
|/ | | | | We are building the whole stack every time, so limit this to just master and merge requests.