summaryrefslogtreecommitdiff
path: root/BUGS
Commit message (Collapse)AuthorAgeFilesLines
* Use HTTPS URLs for freedesktop.org domainsPaul Menzel2018-10-161-2/+2
| | | | | | | | Run the command below suggested by geirha in ##sed@irc.freenode.net. git grep -l 'http://.*freedesktop.org' | xargs sed -i 's|http\(://\([[:alnum:].-]*\.\)\{0,1\}freedesktop\.org\)|https\1|g' Signed-off-by: Paul Menzel <pmenzel@molgen.mpg.de>
* Use HTTPS URLs for cairographics.org domainsPaul Menzel2018-10-161-2/+2
| | | | | | | | Run the command below suggested by geirha in ##sed@irc.freenode.net. git grep -l 'http://.*cairographics.org' | xargs sed -i 's|http\(://\([[:alnum:].-]*\.\)\{0,1\}cairographics\.org\)|https\1|g' Signed-off-by: Paul Menzel <pmenzel@molgen.mpg.de>
* Add notes on reporting bugs to BUGS file and move bugs listed there to ↵Carl Worth2006-08-181-36/+65
| | | | ROADMAP instead.
* Skip TrueType font output for PS/PDF until it handles vertical layout.Keith Packard2006-06-291-0/+7
| | | | | | | | The TrueType font subsetting code fails to emit VHEA/VMTX headers for the font, so WMode 1 doesn't work to switch to vertical metrics. Added a bug about this, and changed the PS/PDF output code to just use Type3 in this case until the bug is fixed. Updated the reference images to match the output for PDF/PS backends for the vertical font check.
* Add mention of suspected bug in PS backend.Carl Worth2005-10-251-0/+10
|
* Add a couple of potential bugs to BUGS.Carl Worth2005-10-031-5/+11
|
* Add pointer to http://bugs.freedesktop.org.Carl Worth2005-08-241-0/+12
|
* Fix cairo_show_text to advance the current point. Add documentation for ↵Carl Worth2005-08-241-4/+0
| | | | | | | cairo_show_text. Add test to verify that the current-point-advancing behavior of cairo_show_text is working. Remove bug about cairo_show_text not advancing the current point.
* Move comment about missing cleanup of caches on XCloseDisplay from BUGS to a ↵Carl Worth2005-08-231-7/+0
| | | | _cairo_xlib_close_display. Also covered in bug #4120.
* caps only added to last subpath: COVERED by test/caps-sub-paths and bug #4205.Carl Worth2005-08-231-4/+0
|
* ref_counts will go negative: COVERED by ↵Carl Worth2005-08-221-6/+0
| | | | https://bugs.freedesktop.org/show_bug.cgi?id=4198
* Remove several entries in an effort to obsolete the BUGS file in favor of ↵Carl Worth2005-08-221-37/+0
| | | | | | | | | | bugzilla and cairo/test. Specifically: cairo_image_surface_create should clear image: NOTABUG. The user can clear if desired, and cairo clearing unconditionally would be performance overhead). cairo_clip is really slow: FIXED/COVERED. Since the time this entry was added we've got rectangular, pixel-alignend clipping optimized. And there's a bug in bugzilla (https://bugs.freedesktop.org/show_bug.cgi?id=4191) for optimizing IN. self-intersecting path is wrong: COVERED by test/self-intersecting.c. Cairo is crashing Xnest: NEEDINFO. Is this still happening? Xfake has been working quite well for a very long time now. font-size=0 in SVG does bad things: FIXED.
* Remove several bugs that have been fixed.Carl Worth2005-08-061-53/+0
|
* Remove several bugs that have been fixed.Carl Worth2005-08-061-29/+0
| | | | | | Slip group support off of the 1.0 roadmap. Update status of clipping work which otaylor is working on. Update for progress on cairo_surface_mark_dirty (committed), non-antialiased rendering (patch), cairo_arc_to (patch), consistent error handling (committed), cairo_content_t (committed). Remove details for some completed items. Don't crash if font_face is NULL, (this is a documented mechanism for returning to the default font_face).
* Add note that Xlib caches need to be cleand up on close of display.Carl Worth2005-07-171-0/+7
|
* Add bug for cairo_show_surface under non-default CTM.Carl Worth2005-02-101-0/+16
|
* Add bugs on cairo_surface_create_for_image, bad names for ↵Carl Worth2005-01-191-1/+15
| | | | cairo_font_set_transform and cairo_font_current_transform, segfault on AMD64.
* A NULL cairo_t * is not sane.Carl Worth2005-01-121-0/+7
| | | | | | Add freetype flags so that things work with freetype in a non-standard location, (a little extra work here since freetype doesn't use pkg-config). Add several items culled from recent mailing list discussions. Add bugs on cache locking and surface pattern scaling.
* Remove unused CAIRO_TRAPS_GROWTH_INC.Carl Worth2004-12-231-0/+7
| | | | | Resize arrays by doubling rather than by linear increments. Add new bug exposed centi_unfinished.svg.
* Re-enabled __internal_linkage for all internal functions. Now avoid the ↵Carl Worth2004-12-201-12/+0
| | | | warning by moving the * from the return type after the __internal_linkage macro. It looks awaful, but it keeps the compiler quiet.
* Add bug about gcc 3.4 warning: '__visibility__' attribute ignored on ↵Carl Worth2004-12-201-0/+12
| | | | | | non-class types. Remove __internal_linkage macro from all functions returning pointers to shut up warning from gcc 3.4.
* Add bug about invalidating font caches.Carl Worth2004-12-171-0/+4
|
* Add note that bug has been fixed. (main): Instrumentation code for testing ↵Carl Worth2004-11-231-0/+7
| | | | | | | | cache destruction. Support tests that produce no output, (don't check image if (width,height) == (0,0)). Add #include <assert.h> here rather than in multiple .c files. Add const qualifier to static cache_arrangements table. (_cache_sane_state): Remove refcount assertion as it it false during the cairo_cache_destroy. (_cache_sane_state): #include <assert.h> moved up to cairoint.h (_entry_destroy): Fix bug in assertion (used_memory >= entry->memory), not >. (_cairo_cache_destroy): Fix timing of refcount decrement so that the destroy function actually works.
* Added BUG entryCarl Worth2004-11-111-0/+5
|
* Add initial regression test suite.Carl Worth2004-10-261-0/+11
| | | | | | Don't AC_SUBST a dozen different FOO_CFLAGS and FOO_LIBS. Instead, incrementally build up just CAIRO_CFLAGS and CAIRO_LIBS. Don't list flags that should get picked up via dependency information through Requires. Add description of move_to_show_surface.
* Note that cairo_clip is fixed now.Carl Worth2004-08-021-3/+3
|
* Add missing ChangeLog entry. Add description of current tessellation bugs.Carl Worth2004-07-011-0/+5
|
* Several people have reported that cairo_clip is not working right now. And ↵Carl Worth2004-05-111-0/+6
| | | | it's always been slow.
* Move all libpng-related code into copy_page. (unpremultiply_data): Add ↵Carl Worth2004-05-041-0/+4
| | | | missing unpremultiply step. (_cairo_png_surface_copy_page): Move PNG output to copy_page. Add support for A8 and A1 images. Remove time from header (we may want to add it again later, but for now it messes up my test suite). (_cairo_png_surface_destroy): Call copy_page if it hasn't been called already. (_cairo_png_surface_show_page): Add implementation.
* Added a BUG and a TODO itemCarl Worth2004-04-291-1/+8
|
* Track pixman fixes to PIXMAN_FORMAT_NAME_*.Carl Worth2004-04-161-0/+6
| | | | | | Explicitly add cases for all enum values to eliminate compiler warnings. Remove proposal for surface_clip interface as cairo_clip should be able to cover this case now. Added bug concerning negative ref_counts.
* Move weight after slant to match the order in cairo_select_font.Carl Worth2004-04-021-0/+4
| | | | | Added notes on DPI for image-based backends and on proposal for new cairo_text_glyphs function. Added BUG about cairo_show_text not advancing the current point.
* Add proposal for cairo_xlib_surface_set_size.Carl Worth2004-03-301-0/+27
| | | | Added note about problem with cairo_scale_font.
* cairo usage is crashing XnestØyvind Kolås2004-03-221-0/+8
|
* Added bug about self-intersecting paths. (Really, I'm just testing the ↵Carl Worth2003-10-151-1/+3
| | | | cairo-commit mailing list)
* Added a few items to BUGS/TODOCarl Worth2003-09-121-0/+13
|
* Fixed bugs if cairo_stroke/fill called before cairo_set_rgb_color or ↵Carl Worth2003-09-041-2/+0
| | | | cairo_set_target. Also fixed bug when cairo_set_rgb_color is called before cairo_set_target.
* Renamed everything from Xr* to cairo_*Carl Worth2003-07-181-2/+3
|
* Fixed libtool versioningCarl Worth2003-04-251-0/+1
|
* Switched to autotools. Dropped XrPush/PopGroup. Supports non-X Xc rendering.Carl Worth2003-04-171-0/+1