summaryrefslogtreecommitdiff
path: root/boilerplate
AgeCommit message (Collapse)AuthorFilesLines
2011-11-12boilerplate: Fix svg extensionAndrea Canciani1-4/+4
The svg backend produces .svg files. Using the appropriate extension allows the test suite to check the vector output in addition to the PNG images.
2011-11-12boilerplate: Remove unused thread id parameterAndrea Canciani21-88/+8
The thread id is not used anymore (it is always == 0), so it can be removed.
2011-11-11boilerplate: Provide close callback after opening any2ppm outputAndrea Canciani2-4/+11
cairo_boilerplate_open_any2ppm() returns a FILE* obtined from popen() or fdopen(). It should hence be closed using pclose() or fclose() respectively. Fixes the crash on every script test on MacOS X.
2011-11-09Silence some 'unused var' warningsAndrea Canciani1-2/+0
2011-10-11backends: Adds a new Cogl based backendRobert Bragg3-0/+221
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-10-08xlib: Fix compilation with --disable-xlib-xrenderUli Schlachter1-0/+4
The boilerplate code tries to set PolyModePrecise on the xlib device. However, because xrender is disabled, cairo-xlib-xrender.h wasn't included and didn't include the needed xrender headers for this define. This define is copied from cairo-xlib-xrender-private.h Signed-off-by: Uli Schlachter <psychon@znc.in>
2011-09-26boilerplate: Skip testing of null surfacesChris Wilson1-0/+9
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2011-09-18On OS/2, WIFSIGNALED and WTERMSIG are prototyped in sys/wait.hDave Yeo3-0/+12
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-16boilerplate-xcb: Print sequence numbersUli Schlachter1-4/+6
The boilerplate code will now also print the low 16 bits of the sequence number for errors and events. This should make it a lot easier to find errors in e.g. a long xtrace output. Signed-off-by: Uli Schlachter <psychon@znc.in>
2011-09-16cairo-xcb: Require libxcb 1.6Uli Schlachter1-6/+0
Since commit 968eb30bba1dc94, we use xcb_discard_reply(). This function was added in libxcb 1.6. "Fixes": https://bugs.freedesktop.org/show_bug.cgi?id=40925 Signed-off-by: Uli Schlachter <psychon@znc.in>
2011-09-16test: Use the test-traps as the reference images for xlib/xcbChris Wilson3-8/+8
The test-traps provides a reference implementation of the traps-compositor as used by xlib, so we can use it to generate the reference images as well. (Of course checking that test-traps is itself correct and only differs in the renderer! ;-) Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2011-09-15test: Complete set of baseline reference imagesChris Wilson1-2/+2
test-base basically implements rendering ala cairo-1.0 and so serves as a useful baseline for comparing enhancements and to regression test the core libraries.
2011-09-12Introduce a new compositor architectureChris Wilson3-123/+245
Having spent the last dev cycle looking at how we could specialize the compositors for various backends, we once again look for the commonalities in order to reduce the duplication. In part this is motivated by the idea that spans is a good interface for both the existent GL backend and pixman, and so they deserve a dedicated compositor. xcb/xlib target an identical rendering system and so they should be using the same compositor, and it should be possible to run that same compositor locally against pixman to generate reference tests. Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk> P.S. This brings massive upheaval (read breakage) I've tried delaying in order to fix as many things as possible but now this one patch does far, far, far too much. Apologies in advance for breaking your favourite backend, but trust me in that the end result will be much better. :)
2011-08-15Introduce cairo_mime_surface_tChris Wilson1-0/+10
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 Wilson1-0/+10
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-13boilerplate: improve fidelity of surface extractionChris Wilson1-3/+15
Create an image surface of equivalent content to the original. Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2011-07-21XCB: Store the flags per-connection onlyUli Schlachter1-29/+16
Every xcb surface had its own copy of the flags from the time that it was created. This means that, if you want to make use of cairo_xcb_device_debug_cap_xrender_version() and cairo_xcb_device_debug_cap_xshm_version(), you first had to create a dummy xcb surface, use that to get access to the cairo_device_t so that you can use these functions and only then create your real surface, because the change only affected new surfaces. This commit changes everything to use the connection's flag and removes the per-surface flags. This avoids the dummy surfaces completely. Signed-off-by: Uli Schlachter <psychon@znc.in>
2011-07-20xcb: Take advantage of clip-boxesChris Wilson1-23/+69
A demonstration of step 2, improves performance for selected benchmarks on selected GPUs by up to 30%. firefox-fishbowl on snb {i5-2520m): 42s -> 29s. firefox-talos-gfx on snb: 7.6 -> 5.2s. firefox-fishbowl on pnv (n450): 380 -> 360s. Whist this looks like it is getting close to as good as we can achieve, we are constrained by both our API and Xrender and fishbowl is about 50% slower than peak performance (on snb). And it fixes the older performance regression in firefox-planet-gnome. Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2011-07-14Excise xcb-drmChris Wilson1-12/+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-12/+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-07-03Xlib: Fix boilerplate to work with xlib-xcbUli Schlachter1-0/+6
Xlib boilerplate includes cairo-xlib-surface-private.h, so that it can cast the xlib cairo_surface_t to cairo_xlib_surface_t and then mess with some internals of that struct. However, xlib-xcb doesn't use that struct and thus this results in random memory corruption. "Luckily", all the fields that this messes with don't corrupt any fields in cairo_xlib_xcb_surface_t, but instead this writes past the end of the buffer that was returned from malloc. This commit just adds an #if to disable this code section since I have no idea what a proper fix would be. This means that the xlib-fallback backend doesn't actually test any fallbacks with xlib-xcb, however it never did so anyway. If you have any idea how to fix xlib-fallback with xlib-xcb, please speak up. Signed-off-by: Uli Schlachter <psychon@znc.in>
2011-06-24xcb: Use defines instead of magic numbersUli Schlachter1-1/+2
render.h gives us nice descriptive names for the precise/imprecise poly modes. Signed-off-by: Uli Schlachter <psychon@znc.in>
2011-06-20boilerplate: Use correct flag type in DFBWindowDescriptionHaithem Rahmani1-1/+1
The window description flag macros are prefixed with DWDESC_. The issue was not noticed because DWDESC_CAPS and DSDESC_CAPS have the same value. Fixes https://bugs.freedesktop.org/show_bug.cgi?id=37049
2011-06-20build: Clean up environment variables and flags for the win32 buildAndrea Canciani1-3/+1
Avoid ovverriding LINK, as it has a special meaning for the MSVC build tools.
2011-06-20boilerplate: Silence MSVC warningsAndrea Canciani1-0/+1
On Win32 INT_MIN/MAX macros are defined in stdint.h, which makes MSVC complain about the following redefinitions: ...\stdint.h(73) : warning C4005: 'INT16_MIN' : macro redefinition ...\boilerplate\cairo-boilerplate.h(64) : see previous definition of 'INT16_MIN' ...\stdint.h(77) : warning C4005: 'INT16_MAX' : macro redefinition ...\cairo-boilerplate.h(67) : see previous definition of 'INT16_MAX' ...\stdint.h(80) : warning C4005: 'UINT16_MAX' : macro redefinition ...\boilerplate\cairo-boilerplate.h(70) : see previous definition of 'UINT16_MAX'
2011-06-14test: Fix compilation on win32Andrea Canciani5-9/+34
The Microsoft C Compiler does not accept empty-initialized arrays: cairo-boilerplate-win32-printing.c(373) : error C2059: syntax error : '}' cairo-boilerplate-win32-printing.c(374) : warning C4034: sizeof returns 0
2011-06-14boilerplate: Add generation of constructors on win32Andrea Canciani1-0/+3
cairo-boilerplate-constructors.c is one of the sources required to build the boilerplate. This file is generated by a script, invoked by the appropriate make target during the build.
2011-06-02boilerplate: Introduce create_similar hookChris Wilson14-0/+37
A deficiency of cairo-perf-trace is that it currently always uses similar surfaces for new surface which are kindly cleared by Cairo. This does not accurately reflect the captured trace and introduces large bandwidth overheads that distort the profiles. So we introduce a new boilerplate hook so that the targets can create a surface without incurring additional overheads. [Fixes the broken partial commit of bf1b08d066e.] Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2011-06-02perfChris Wilson5-6/+206
2011-06-01boilerplate/xcb: Fix silly cut'n'paste errors in previous commitChris Wilson1-3/+2
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2011-06-01xlib,xcb: Force strict adherence to the Render specification when testingChris Wilson2-1/+36
Introduce cairo_xlib_device_debug_set_precision() to override the automatic selection of rendering precision and force the Xorg/DDX to strictly adhere to the precise rendering mode of the Render specification. This allows us to test drivers without worrying, too much, about minor discrepancies in antialiasing. Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2011-05-10boilerplate/egl: Add GLES2 supportAlexandros Frantzis1-1/+21
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2011-05-10gl: Add GLESv2 backend to build systemAlexandros Frantzis1-0/+12
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2011-03-04xcb boilerplate: Handle device offsets correctlyUli Schlachter1-1/+0
When running cairo-test-suite with "-a", backends are also tested with a non-zero device offset. However, for "xcb-window&" the boilerplate incorrectly overwrote the device offset with a zero offset again. This caused all test results to be offset by 25 pixels which obviously makes all tests fail. Just removing the call to cairo_surface_set_device_offset solves the problem. Signed-off-by: Uli Schlachter <psychon@znc.in>
2011-02-18boilerplate/egl: Ensure that we are using an RGBA32 egl configAlexandros Frantzis1-5/+12
2011-01-26xcb: Automatically enable the backend if the libs are availableUli Schlachter1-1/+1
It looks like the cairo-xcb backend is in a good shape and hopefully will be a supported backend for cairo 1.12.0. Let's see if this causes lots of new bugs to be uncovered. :-) Signed-off-by: Uli Schlachter <psychon@znc.in>
2011-01-05xcb: Fix premature pixmap free in boilerplate cleanupUli Schlachter1-0/+1
A xcb surface has to be finished before the associated drawable can be freed or there will be X11 errors when the surface is later finished or used again. Signed-off-by: Uli Schlachter <psychon@znc.in>
2011-01-05xcb: Check the check for errors in boilerplateUli Schlachter1-0/+13
We have to make sure we received all errors that the X server sent out before we can be sure there are none. To do so, we just have to send some request and wait for its reply, because that guarantees that the replies/errors to all previous requests were received. _cairo_boilerplate_xcb_synchronize doesn't need this, because the GetImage request already makes sure we received everything. Signed-off-by: Uli Schlachter <psychon@znc.in>
2011-01-05xcb: Check harder for X11 errors in boilerplateUli Schlachter1-27/+47
This commit makes the boilerplate code check for errors from the X server before disconnecting and during synchronize. This should make sure no errors are ever lost and silently ignored. Signed-off-by: Uli Schlachter <psychon@znc.in>
2011-01-05xcb: Only print the first error and ignore subsequent onesUli Schlachter1-1/+5
It is quite likely that following errors are caused by the previous ones. To avoid flooding users we now silently discard all the errors and events after the first one. Signed-off-by: Uli Schlachter <psychon@znc.in>
2011-01-05xcb: Add a define for some magic numberUli Schlachter1-1/+4
In X11, errors look like events with response_type == 0. Using a define looks better than just a "trust me!". Signed-off-by: Uli Schlachter <psychon@znc.in>
2011-01-05xcb: Handle events in boilerplateUli Schlachter1-7/+6
Cairo shouldn't cause any events during a test run. Verify this by explicitly handling events, too. Signed-off-by: Uli Schlachter <psychon@znc.in>
2010-11-28Boilerplate: Set fallback resolution using force_fallbacks functionAdrian Johnson4-4/+17
cairo_set_fallback_resolution() does not work when testing rgb24 surfaces
2010-11-07XCB: Check screen size in boilerplateUli Schlachter1-0/+12
Trying to create a window for drawing that is larger than the available screen space is a bad idea. When the test finishes and tries to grab the resulting image from the X server, the window's area that is outside of the screen will have undefined content. Signed-off-by: Uli Schlachter <psychon@znc.in> Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2010-08-07Add cairo-gobject libraryBenjamin Otte1-0/+12
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 Otte1-1/+3
We don't want to enable it by default when nobody uses it.
2010-07-17boilerplate: Offset the xlib windowChris Wilson1-2/+2
An idea courtesy of Benjamin Otte is to stress the drivers a bit more by not rendering to 0,0. Under various circumstances rendering to a Window is mapped onto the Screen root Window with a collection of offsets and clips by X. It is easy for the driver to make a mistake and misrender...
2010-07-16build: Add explicit dependcy to cxx libBenjamin Otte1-0/+3
Otherwise the build will fail because it doesn't add the dependency manually. https://bugs.freedesktop.org/show_bug.cgi?id=29114