summaryrefslogtreecommitdiff
path: root/test/solid-pattern-cache-stress.c
AgeCommit message (Collapse)AuthorFilesLines
2009-06-07[test] Cache resolved scaled-fontChris Wilson1-0/+6
The intention is to stress test the solid pattern caches, so we can cheat and avoid repeatedly resolving the toy font.
2009-03-24[test] Early test for memfault.Chris Wilson1-11/+30
Check the error status within after each iteration in solid-pattern-cache-stress.
2008-12-12[test/solid-pattern-cache-stress] Propagate status from sub-contexts.Chris Wilson1-7/+25
Use a cairo_append_path() to set an arbitrary error status on the parent context, in order to propagate errors from a child.
2008-10-31[test] Build test suite into single binary.Chris Wilson1-14/+6
Avoid calling libtool to link every single test case, by building just one binary from all the sources. This binary is then given the task of choosing tests to run (based on user selection and individual test requirement), forking each test into its own process and accumulating the results.
2008-08-13[test] Preparatory work for running under memfault.Chris Wilson1-1/+1
In order to run under memfault, the framework is first extended to handle running concurrent tests - i.e. multi-threading. (Not that this is a requirement for memfault, instead it shares a common goal of storing per-test data). To that end all the global data is moved into a per-test context and the targets are adjusted to avoid overlap on shared, global resources (such as output files and frame buffers). In order to preserve the simplicity of the standard draw routines, the context is not passed explicitly as a parameter to the routines, but is instead attached to the cairo_t via the user_data. For the masochist, to enable the tests to be run across multiple threads simply set the environment variable CAIRO_TEST_NUM_THREADS to the desired number. In the long run, we can hope the need for memfault (runtime testing of error paths) will be mitigated by static analysis. A promising candidate for this task would appear to be http://hal.cs.berkeley.edu/cil/.
2008-06-19[test/solid-pattern-cache-stress] Do what it says on the tin.Chris Wilson1-31/+117
Actually draw to the surface after setting the source in order to trigger use of the solid surface cache.
2008-01-10[test/solid-pattern-cache-stress] Check for drand48().Chris Wilson1-2/+10
Apply an alternative rand() function if drand48() is not available for the platform.
2007-03-20Cache solid patternsChris Wilson1-0/+83
We use a small cache of size 16 for patterns created from solid colors, e.g. cairo_set_source_rgb(). This helps with toolkits that draw many widgets using the same colour scheme. The cache uses a static index variable, which itself acts like a cache of size 1, remembering the most recently used colour. So repeated lookups for the same colour hit immediately. If that fails, the cache is searched linearly, and if that fails too, a new pattern is created and a random member of the cache is evicted.