summaryrefslogtreecommitdiff
path: root/build
AgeCommit message (Collapse)AuthorFilesLines
2012-04-14configure.ac: generate xz tarballs by defaultJavier Jardón1-1/+1
2012-04-14configure: Conditionally include -fltoMarcus Meissner1-1/+12
As some systems fail to create working binaries with when linked with lto, perform a check during configure. Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=39114
2012-04-10Cosmetic configure fixGilles Espinasse1-1/+1
'how to allow undefined symbols in shared libraries' test should use CAIRO_CC_TRY_FLAG_SILENT or configure display is a bit out of order like this checking how to allow undefined symbols in shared libraries used by test suite... checking whether gcc supports -Wl,--allow-shlib-undefined... yes -Wl,--allow-shlib-undefined Signed-off-by: Gilles Espinasse <g.esp@free.fr> Signed-off-by: Uli Schlachter <psychon@znc.in>
2012-04-09build: Disable -Wset-but-unused-variableChris Wilson1-0/+5
This is too noisy in the current build, and masking more important warnings. Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2012-02-16build: Add 'clean' target to Makefile.win32 build systemAndrea Canciani2-14/+14
The Makefile.win32 in the subdirectories provide a working 'clean' target (defined in Makefile.win32.common), the central Makefile.win32 'clean' target does not do anything. Replace the noop 'clean' target with one that cleans all the subdirs.
2012-02-15win32: Fix Makefile.win32 buildAndrea Canciani1-2/+2
The Makefile.win32 build system assumes that the files are in the same directory level. If this is not the case, the compiler fails when it tries to write the object files to a non-existing directory. This can be fixed simply by making sure that the destination directory always exists. Fixes: fatal error C1083: Cannot open compiler generated file: 'release/win32/cairo-win32-debug.obj': No such file or directory
2011-10-11backends: Adds a new Cogl based backendRobert Bragg3-0/+5
This adds a new GPU accelerated backend for Cairo based on the Cogl 3D graphics API. This backend aims to support Cairo in a way that translates as naturally as possible to using a GPU, it does not strive to compete with the anti-aliasing quality of the image backend if it can't be done efficiently using the GPU - raw performance isn't the only metric of concern, so is power usage. As an overview of how the backend works: - fills are handled by tessellating paths into triangles - the backend has an extra fill_rectangle drawing operation so we have a fast-path for drawing rectangles which are so common. - strokes are also tessellated into triangles. - stroke and fill tessellations are cached to avoid the cpu overhead of tessellation and cost of upload given that its common for apps to re-draw the same path multiple times. The tessellations can survive translations and rotations increasing the probability that they can be re-used. - sources and masks are handled using multi-texturing. - clipping is handled with a scissor and the stencil buffer which we're careful to only update when they really change. - linear gradients are rendered to a 1d texture using a triangle strip + interpolating color attributes. All cairo extend modes are handled by corresponding texture sampler wrap modes without needing programmable fragment processing. - antialiasing should be handled using Cogl's multisampling API XXX: This is a work in progress!! TODO: - handle at least basic radial gradients (No need to handle full pdf semantics, since css, svg and canvas only allow radial gradients defined as one circle + a point that must lie within the first circle.) - currently we fall back to pixman for radial gradients. - support glyph rendering with a decent glyph cache design. The current plan is a per scaled-font growable cache texture + a scratch cache for one-shot/short-lived glyphs. - decide how to handle npot textures when lacking hardware support. Current plan is to add a transparent border to npot textures and use CLAMP_TO_EDGE for the default EXTEND_NONE semantics. For anything else we can allocate a shadow npot texture and scale the original to fit that so we can map extend modes to texture sampler modes.
2011-09-18On OS/2, WIFSIGNALED and WTERMSIG are prototyped in sys/wait.hDave Yeo1-1/+1
boilerplate/cairo-boilerplate-pdf.c | 4 ++++ boilerplate/cairo-boilerplate-ps.c | 4 ++++ boilerplate/cairo-boilerplate-svg.c | 4 ++++ build/configure.ac.system | 2 +- 4 files changed, 13 insertions(+), 1 deletions(-) Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2011-09-02Introduce the cairo-missing libraryAndrea Canciani1-1/+1
The cairo-missing library provides the functions which are needed in order to correctly compile cairo (or its utilities) and which were not found during configuration. Fixes the build on MacOS X Lion, which failed because of collisons between the cairo internal getline and strndup and those in libc: cairo-analyse-trace.c:282: error: static declaration of ‘getline’ follows non-static declaration /usr/include/stdio.h:449: error: previous declaration of ‘getline’ was here cairo-analyse-trace.c:307: error: static declaration of ‘strndup’ follows non-static declaration ...
2011-09-02time: Add cairo_time_t typeAndrea Canciani1-6/+1
Add the cairo_time_t type (currently based on cairo_uint64_t) and use it in cairo-observer and in the perf suite. Fixes the build on MacOS X (for the src/ subdir) and Win32, whch failed because they don't provide clock_gettime: cairo-surface-observer.c:629: error: implicit declaration of function 'clock_gettime' cairo-surface-observer.c:629: warning: nested extern declaration of 'clock_gettime' cairo-surface-observer.c:629: error: 'CLOCK_MONOTONIC' undeclared (first use in this function) ...
2011-08-15Introduce cairo_mime_surface_tChris Wilson2-0/+2
The mime surface is a user-callback surface designed for interfacing cairo with an opaque data source. For instance, in a web browser, the incoming page may be laid out and rendered to a recording surface before all the image data has finished being downloaded. In this circumstance we need to pass a place holder to cairo and to supply the image data later upon demand. Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2011-08-14script: enable by defaultChris Wilson1-1/+1
I'm willing to make this a supported backend as I find it to be an invaluable debugging tool... Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2011-08-14Introduce cairo_surface_observer_t for performance analysisChris Wilson2-0/+2
Another logging passthrough surface that records the style of operations performed trying to categorise what is slow/fast/important. In combination with perf/cairo-analyse-trace it is very useful for understanding what a trace does. The next steps for this tool would be to identify the slow operations that the trace does. Baby steps. This should be generally useful in similar situations outside of perf/ and should be extensible to become an online performance probe. Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2011-08-13Fix pollution from skia commitChris Wilson1-1/+1
I forgot to proof-read the patch before pushing and forgot I had left in some damage from trying to get skia to link using libtool. Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2011-08-13skia: Update to use cairo_backend_t interfaceChris Wilson1-1/+1
Still hopelessly broken. Requires compiling cairo to use static linking and then still requires manual linkage to workaround libtool. Lots of functionality is still absent - we need to either find analogues to some Cairo operations or implement fallbacks - but it is sufficient to investigate how Skia functions in direct comparison with Cairo for tessellation/rasterisation. Caveat emptor. Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2011-07-29build: Respect CFLAGS and LIBS env settingsAndrea Canciani1-4/+4
The build system does not honor the flags set externally and replaces it with the pthread-only flags when detecting pthread availability. This breaks the configuration of cairo in some cross-compilation environments: conftest.c:1: note: someone does not honour COPTS correctly, passed 0 times The test for pthread should append the new flags to the old one.
2011-07-14Excise xcb-drmChris Wilson3-9/+0
The experiment was at best a pyrrhic victory. Whilst it did show that you could successfully subvert cairo_xcb_surface_t and provide the rendering locally faster (than the xlib driver at that time), any performance benefits were lost in the synchronisation overheads and server-side buffer allocation. Once cairo-gl is mature, we need to look at how we can overcome these to improve client-side rendering In the meantime, cairo-xcb is no longer my playground for experimentation and is shaping up to become a stable backend... Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2011-07-14Excise DRM-XrChris Wilson1-1/+0
I've since incorporated (nearly) all the features from cairo-drm into xf86-video-intel, making this experiment defunct. Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2011-06-20build: Silence autoconf warningsAndrea Canciani1-1/+1
Autoconf 2.86 reports: warning: AC_LANG_CONFTEST: no AC_LANG_SOURCE call detected in body
2011-06-20build: Clean up environment variables and flags for the win32 buildAndrea Canciani1-10/+14
Avoid ovverriding LINK, as it has a special meaning for the MSVC build tools.
2011-06-20build: Improve generation of cairo-features.h on win32Andrea Canciani3-56/+57
All of the build depends on cairo-features.h. By having a target to generate it that can be run from anywhere, it is possible to delegate the dependency handling to 'make'.
2011-05-20build: Use $GREP -e instead of plain grep -eBenjamin Otte1-1/+2
https://bugs.freedesktop.org/show_bug.cgi?id=37388
2011-05-10gl: Add GLESv2 backend to build systemAlexandros Frantzis3-0/+5
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2011-03-18Don't cache _CAIRO_ENABLE resultsBehdad Esfahbod1-63/+11
Caching is fragile sinle the enable commands cannot have any side-effects when caching. And doesn't have significant speedup at this level. Just remove it.
2011-03-15configure: Test for funlockfileChris Wilson1-1/+1
cairo-trace already depended upon HAVE_FUNLOCKFILE for its thread-safety. [This is a candidate for 1.10.] Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2010-12-15gl: Remove GLEW from the build system and the source treeAlexandros Frantzis1-1/+0
2010-11-17Add note re gtk-doc.makeBehdad Esfahbod1-1/+10
2010-11-06configure: Correct reporting of tee backendAndrea Canciani1-1/+1
Since 9f33f8453b4949cfdc63169d3acd7238f89379c2 tee is not compiled in anymore by default. Reporting it as always enabled is misleading.
2010-11-06configure.ac.features: s/Meta/Recording/Adrian Johnson1-1/+1
2010-10-29configure: Remove noisy -Wlogical-opChris Wilson1-1/+3
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2010-08-10build: Fudge the build system some more so it handles extra libsBenjamin Otte1-0/+3
Add NONPKGCONFIG_EXTRA_LIBS that are only put into the generated pc file but not used when linking. This is now used to add -lcairo-gobject to the cairo-gobject.pc file.
2010-08-07Fix configuration if gobject is absentAndrea Canciani1-1/+1
Autodetect gobject and only use it if present. Its absence is not to be considered a failure since it's not required.
2010-08-07Add cairo-gobject libraryBenjamin Otte2-0/+4
This library is supposed to contain GType declarations for Cairo types. It is also meant to support gobject-introspection binding creation.
2010-07-30configure: Disable xml backend by defaultBenjamin Otte1-1/+1
We don't want to enable it by default when nobody uses it.
2010-07-30configure: Disable tee backend by defaultBenjamin Otte2-0/+3
We don't want to enable it by default when nobody uses it.
2010-07-21build: Typos in comments.M Joonas Pihlaja1-4/+4
Fix inline "dnl" strings left over from a string substitution "--" -> "dnl".
2010-07-21build: Fix pthread detection code when there isn't one.Hib Eris1-1/+1
The code was testing the output variable $use_pthread rather than the input variable $enable_pthread when checking that pthreads were actually found when requested.
2010-07-12build: Sync up autogenerated win32 build files.M Joonas Pihlaja2-0/+4
2010-07-11build: Fix typo in pthread test program.M Joonas Pihlaja1-1/+1
Missing a semicolon after pthread_cleanup_push. Incredibly only openbsd 4.5 minded.
2010-07-11build: Fix regression provoked by newer autoconf and dodgy configuring.M Joonas Pihlaja2-1/+14
We're not supposed to be redefining PACKAGE_VERSION, PACKAGE_... from the configure generated confdefs.h. This patch rudely adds paper over the problem. The compiler warnings are a problem for us since our checking of various compiler flags assumes that no news is good news, and that any warning messages are due to the flags under test. The regression appears when using an autoconf >= 2.64, at least, but not with 2.61. The same issue appears in the pthread test because our conftest unconditionally #defines _GNU_SOURCE, but autoconf ends up doing that in the confdefs.h.
2010-07-11build: Rework pthread detection.M Joonas Pihlaja2-283/+251
Use two levels of pthread support: a minimal level used to build cairo itself, and a full level to build threaded apps which want to use cairo. The minimal level tries to use pthread stubs from libc if possible, but falls back to the full level if that's not possible. We use CFLAGS=-D_REENTRANT LIBS=-lpthread to find a real pthread library since that seems to work on every unix-like test box we can get our hands on.
2010-07-11build: Purge CAIRO_CC_TRY_LINK_FLAG.M Joonas Pihlaja2-22/+1
Use CAIRO_CC_TRY_FLAG instead in the one place where we used CAIRO_CC_TRY_LINK_FLAG and make the build system one macro smaller.
2010-07-11build: Factor out a more pliable CAIRO_CC_TRY_LINK_WITH_ENV_SILENT.M Joonas Pihlaja1-6/+25
Introduce a new CAIRO_CC_TRY_LINK_WITH_ENV_SILENT macro for running generic link tests with arbitrary CFLAGS/LIBS/LDFLAGS and no muttering of autoconf messages. Rewrite the previous CAIRO_CC_TRY_FLAG in terms of it.
2010-07-09build: Commit new versions of autogenerate Windows build filesBenjamin Otte1-1/+0
The recent commits to the build system changed a bunch of stuff in there, so update the files.
2010-07-09build: Fix C++ issues with automakeBenjamin Otte1-1/+6
This is an attempt to fix the broken situation we've been in where automake links libcairo.la with c++ because it might potentially maybe include C++ files. Those potential files only exist in Chris' throwaway backends (skia, qt) and the BeOS backend, so for 99.99% of cases, these backends are not needed and linking with c++ is overkill. Also, no one wants to have libcairo.so link to libstdc++. This patch fixes that in mutliple steps: 1) Add build infrastructure to distinguish between C and C++ backends. This is done by allowing to specify backend_sources as well as backend_cxx_sources variables in Makefile.sources. 2) Optionally build a libcairo_cxx.la noinst library This intermediate library is built for C++ backends only and therefor linked using c++. It is then linked into the final libcairo.la. This does not require c++, so the linking of libcairo.la is done with cc. This also works around various weirdnesses that the current build system exposes, where it assumes cisms when in fact using c++ semantics, like not detecting c++ properly or: https://bugzilla.redhat.com/show_bug.cgi?id=606523
2010-07-09build: Get rid of $(foo_files) Makefile.am variablesBenjamin Otte1-1/+0
They're unused, and less variables make the build system easier to understand.
2010-07-05configure: remove doltBenjamin Otte1-178/+0
libtool should be fast by now
2010-07-05configure: remove shaveBenjamin Otte4-230/+0
2010-07-03boilerplate: Add a describe vfuncBenjamin Otte1-0/+1
This function is supposed to describe the backend in use. The describe function is optional - and therefore initialized as NULL everywhere. Note: It is well known that the xlib backend uses X. What is not known is what version the server supports or what graphics card it is running on. That is the information the describe vfunc is supposed to provide.
2010-06-26Regenerate default win32 headers.Chris Wilson1-1/+0