summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2008-10-23[build] Use AC_LINK_IFELSE for testing linker flags.Chris Wilson2-1/+21
Richard Hult reported that -Wl,--allow-shlib-undefined was incorrectly being identified as supported by gcc under Mac OS/X: configure:25103: checking whether gcc supports -Wl,--allow-shlib-undefined configure:25117: gcc -c -Werror -Wl,--allow-shlib-undefined conftest.c >&5 i686-apple-darwin9-gcc-4.0.1: --allow-shlib-undefined: linker input file unused because linking not done So instead of just checking whether the compiler accepts the flag, check that we can actually link a dummy file.
2008-10-23[test/user-font] Exercise glyph 0Behdad Esfahbod1-4/+3
Previously there was a bug in cairo and/or poppler causing glyph 0 of user fonts to not show up. This is fixed now, so we exercise glyph 0.
2008-10-22[win32] Correct error paths in text_to_glyphs().Chris Wilson1-3/+4
Carl spotted that 1db894 introduced an error into text_to_glyphs() such that following an allocation error the code would attempt to thaw an unfrozen glyph cache, leading to an attempt to unlock an unlocked mutex - which causes a deadlock under win32.
2008-10-22Twin perf caseChris Wilson4-1/+54
2008-10-22Map toy font face to implementation.Chris Wilson7-21/+128
Quartz fonts and user fonts use an indirect font face when creating a scaled font for the toy font face. This means that they insert a scaled font into the font map that has a different font face to the one that is initially searched upon. The result is that when we try to create an identical scaled font, we fail to find the existing scaled font and attempt to insert a duplicate into the hash table - which triggers an assert. In order to avoid creating duplicate fonts, we add a new method to the font backends that allows cairo_scaled_font_create() to peek at the font_face that will be used to actually implement the scaled font constructor - thus we are able to use the correct font_face as part of the hash key.
2008-10-22Don't add a notdef glyph to Type 3 font subsetsAdrian Johnson5-73/+48
This allows user-fonts to use glyph 0 when embedding in PS/PDF. According to ISO32000 Type 3 fonts do not require a notdef glyph.
2008-10-22[cairoint] Remove the duplicate prototype.Chris Wilson1-3/+0
In the previous commit I added comments and a duplicate prototype. Remove the duplicate - but keep the comments.
2008-10-22Ensure that the scaled font is frozen for the lifetime of the scaled glyph.Chris Wilson22-229/+280
After discussing the scaled font locking with Behdad, it transpired that it is not sufficient for a font to be locked for the lifetime of a scaled glyph, but that the scaled font's glyph cache must be frozen for the glyph' lifetime. If the cache is not frozen, then there is a possibility that the glyph may be evicted before the reference goes out of scope i.e. the glyph becomes invalid whilst we are trying to use it. Since the freezing of the cache is the stronger barrier, we remove the locking/unlocking of the mutex from the backends and instead move the mutex acquisition into the freeze/thaw routines. Then update the rule on acquiring glyphs to enforce that the cache is frozen and review the usage of freeze/thaw by all the backends to ensure that the cache is frozen for the lifetime of the glyph.
2008-10-21[test/meta-surface-pattern] Propagate errors.Chris Wilson1-3/+2
Use cairo_get_target() to propagate any errors from the secondary context.
2008-10-21[build] Use doltBehdad Esfahbod2-0/+178
Dolt is a hack to speed up libtool-based build systems: http://dolt.freedesktop.org/ It's completely transparent to the user. Brings make time of cairo from 70s down to 20s. Yay!
2008-10-21[test/xlib-expose-event] Propagate errors.Chris Wilson1-3/+7
Use cairo_get_target() to propagate errors from secondary contexts.
2008-10-21[test/unbounded-operator] Propagate errors.Chris Wilson1-4/+2
Use cairo_get_target() to propagate errors from secondary contexts.
2008-10-21[test/surface-pattern-scale-up] Propagate errors.Chris Wilson1-3/+4
Use cairo_get_target() to propagate errors from the secondary context.
2008-10-21[test/surface-pattern-scale-down] Propagate errors.Chris Wilson1-3/+4
Use cairo_get_target() to propagate errors from the secondary context.
2008-10-21[test/rotate-image-surface-paint] Proapgate errors.Chris Wilson1-3/+4
Use cairo_get_target() to propagate errors from the secondary context.
2008-10-21[test/pixman-rotate] Propagate errorsChris Wilson1-17/+16
Use cairo_get_target() to propagate errors from the secondary context.
2008-10-21[test/operator-source] Propagate errors.Chris Wilson1-8/+4
Use cairo_get_target() to propagate errors from the secondary context.
2008-10-21[test/operator-clear] Propagate errors.Chris Wilson1-4/+2
Use cairo_get_target() to propagate errors from secondary contexts.
2008-10-21[test/extend-pad] Propagate errors.Chris Wilson1-3/+4
Use cairo_get_target() to propagate errors from the secondary context.
2008-10-21[test/device-offset-scale] Propagate errorsChris Wilson1-7/+7
Use cairo_get_target() to propagate errors from the secondary contexts.
2008-10-21[test/device-offset-positive] Propagate errors.Chris Wilson1-7/+5
Use cairo_get_target() to propagate errors from the secondary context.
2008-10-21[test/device-offset] Propagate error.Chris Wilson1-3/+3
Use cairo_get_target() to propagate errors from the secondary context.
2008-10-21[ps] Check for an empty font subset.Chris Wilson1-0/+3
Return early before trying to emit an empty subset into the document - avoids a potential use of an uninitialised status variable.
2008-10-21[configure] Check for atomic xchg.Chris Wilson1-1/+4
Bug 18140 identifies a case where we have an atomic increment, but not an atomic exchange. We need both to implement atomic reference counting, so add a second check to detect whether __sync_val_compare_and_swap generates a non-atomic instruction. Fixes http://bugs.freedesktop.org/show_bug.cgi?id=18140.
2008-10-20Add API documentation for NULL filenames and write_funcs.Chris Wilson3-6/+24
Mention in the API docs that you can pass a NULL filename to cairo_(pdf|ps|svg)_surface_create in order to construct a queryable surface without generating any temporary files. Similarly when passing a NULL write_func to cairo_pdf_surface_create_for_stream et al.
2008-10-20[mutex] s/HOLDS_MUTEX/MUTEX_IS_LOCKED/Chris Wilson3-12/+12
Behdad prefers the latter to keep a clean namespace.
2008-10-20[directfb] Unbounded operators are unsupported.Chris Wilson1-0/+10
Currently the emulation of Porter-Duff operators does not correctly handle the unbounded operators.
2008-10-20[directfb] Fallback for SATURATEChris Wilson1-0/+3
We're unable to satisfactorily emulate SATURATE using the src/dst blend modes, so fallback. (Might just be a bug in libdirectfb...)
2008-10-20[directfb] Perfom text fallback if emulating clip regions.Chris Wilson1-2/+12
Fallback if we have a clip that is not a simple region.
2008-10-20[directfb] When blitting check if we need the un-premultiplied color.Chris Wilson2-24/+54
When blitting whether we need to use the premultiplied color is dependent upon the destination surface capabilities.
2008-10-20[directfb] Apply clip to release_dest_image()Chris Wilson1-9/+14
We need to respect the current clip when copying the fallback image back to the target surface.
2008-10-20[directfb] Fix OBO in clip.Chris Wilson1-2/+2
DirectFB seems to use inclusive upper bounds.
2008-10-20[directfb] Force NEAREST.Chris Wilson1-0/+5
The current version of DirectFB does not support any filters, so set NEAREST on the source patterns so that we can fully optimize the pattern inside core.
2008-10-20[directfb] Track the empty clip rectangle.Chris Wilson1-1/+5
A region with no extents means everything should be clipped out, so we need an extra flag to disambiguate when we have 0 clip rectangles.
2008-10-20[directfb] Cap the maximum surface size to use for the font cache.Chris Wilson1-3/+7
Fallback if we need to create a cache larger than the maximum usable surface.
2008-10-20[directfb] Only use the pure BLIT for integer translations.Chris Wilson1-7/+23
If we have non-integer translation on a source pattern then we need to use STRECTHBLIT (the core takes care to optimize NEAREST patterns to integer translations so that this will only be used when interpolation is required).
2008-10-20[directfb] Tweak _categorize_operation().Chris Wilson1-12/+25
Explicitly list the extend modes that are supported/unsupported and immediately check for an unsupported operation.
2008-10-20[directfb] Support ROI cloning.Chris Wilson1-7/+4
Only clone the ROI in order to efficiently handle large sources.
2008-10-20[directfb] Rename backend structure.Chris Wilson1-13/+24
Use _cairo_directfb_surface_backend for consistency with other backends.
2008-10-20[directfb] Whitespace.Chris Wilson1-745/+733
Trim lots of trailing whitespace and fix up according to CODING_STYLE.
2008-10-20[directfb] Simplify return from _directfb_get_operator().Chris Wilson1-70/+68
Used only as a predicate, so simply return a boolean.
2008-10-20[directfb] Use the solid pattern cache.Chris Wilson1-54/+18
The dfb backend recreated a solid color surface for every colour, completely bypassing the solid pattern cache.
2008-10-20[boilerplate/directfb] Create ARGB surfaces on demand.Chris Wilson1-10/+13
Create an RGB or ARGB surface depending upon the content type of the test target, with the result that the directfb rgb24 target no longer unconditionally fails.
2008-10-20[configure.ac.analysis] s/safe/_save/Chris Wilson1-4/+4
Rename the temporary variable in line with the convention used by the rest of the build system.
2008-10-20[perf] Free images for composite-checkerChris Wilson1-1/+2
Fix memleak of the image surfaces.
2008-10-20[test] Add degenerate-dash to XFAIL.Chris Wilson1-0/+4
PS (ghostscript) interprets the degenerate end-caps quite differently, and perhaps slightly more rationally... Add this to XFAIL, until we have a definitive specification on how we should behave.
2008-10-20Remove CAIRO_BEGIN_DECLS uses that ickle introduced while mergingBehdad Esfahbod2-4/+0
2008-10-19[directfb] Return an error surface on create() failure.Chris Wilson1-11/+10
Do not return NULL but an NO_MEMORY error surface if we fail to allocate the surface during creation.
2008-10-19[directfb] Simplifiy ADD_TRIChris Wilson1-17/+13
Simplify the ADD_TRI macro to make the code more readable.
2008-10-19[directfb] Add missing error statusChris Wilson1-0/+1
We jumped to the ERROR path without setting an error status - assume NO_MEMORY.