summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2011-06-27tiled repeatsimple-repeatSøren Sandmann Pedersen4-0/+80
2011-06-27blitters test: test repeating sourcesSøren Sandmann Pedersen1-1/+5
asdf
2011-06-27Move _pixman_lookup_composite_function() to pixman-utils.cSøren Sandmann Pedersen3-117/+127
2011-06-27Add src, mask, and dest flags to the composite args struct.Søren Sandmann Pedersen2-0/+7
These flags are useful in the various compositing routines, and the flags stored in the image structs are missing some bits of information that can only be computed when pixman_image_composite() is called.
2011-06-25test: Make fuzzer-find-diff.pl executableSøren Sandmann1-0/+0
2011-06-25ARM: Fix two bugs in neon_composite_over_n_8888_0565_ca().Søren Sandmann1-4/+4
The first bug is that a vmull.u8 instruction would store its result in the q1 register, clobbering the d2 register used later on. The second is that a vraddhn instruction would overwrite d25, corrupting the q12 register used later. Fixing the second bug caused a pipeline bubble where the d18 register would be unavailable for a clock cycle. This is fixed by swapping the instruction with its successor.
2011-06-25blitters-test: Make common formats more likely to be tested.Søren Sandmann Pedersen1-8/+14
Move the eight most common formats to the top of the list of image formats and make create_random_image() much more likely to select one of those eight formats. This should help catch more bugs in SIMD optimized operations.
2011-06-23Silence autoconf warningsAndrea Canciani1-20/+20
Autoconf 2.86 reports: warning: AC_LANG_CONFTEST: no AC_LANG_SOURCE call detected in body Every code fragment must be wrapped in [AC_LANG_SOURCE([...])]
2011-06-20Replace argumentxs to composite functions with a pointer to a structSøren Sandmann Pedersen11-1041/+278
This allows more information, such as flags or the composite region, to be passed to the composite functions.
2011-06-12In pixman-general.c rename image_parameters to {src, mask, dest}_imageSøren Sandmann Pedersen1-17/+16
All the fast paths generally use these names as well.
2011-06-12Replace instances of "dst_*" with "dest_*"Søren Sandmann Pedersen11-275/+275
The variables in question were dst_x, dst_y, dst_image. The majority of _x and _y uses were already dest_x and dest_y, while the majority of _image uses were dst_image.
2011-05-31demos: Comment out some unused variablesSøren Sandmann2-1/+7
2011-05-31sse2: Delete some unused variablesSøren Sandmann1-14/+4
2011-05-31mmx: Delete some unused variablesSøren Sandmann1-14/+3
2011-05-29Include noop in win32 buildsAndrea Canciani1-0/+1
2011-05-24Fix a few typos in pixman-combine.c.templateNis Martensen1-4/+3
Some equations have too much multiplication with alpha.
2011-05-19Move NOP src iterator into noop implementation.Søren Sandmann Pedersen2-9/+6
The iterator for sources where neither RGB nor ALPHA is needed, really belongs in the noop implementation.
2011-05-19Move NULL iterator into pixman-noop.cSøren Sandmann Pedersen2-19/+17
Iterating a NULL image returns NULL for all scanlines. We may as well do this in the noop iterator.
2011-05-19Add a noop src iteratorSøren Sandmann Pedersen1-0/+39
When the image is a8r8g8b8 and not transformed, and the fetched rectangle is within the image bounds, scanlines can be fetched by simply returning a pointer instead of copying the bits.
2011-05-19Move noop dest fetching to noop implementationSøren Sandmann Pedersen2-26/+37
It will at some point become useful to have CPU specific destination iterators. However, a problem with that, is that such iterators should not be used if we can composite directly in the destination image. By moving the noop destination iterator to the noop implementation, we can ensure that it will be chosen before any CPU specific iterator.
2011-05-19Add a noop composite function for the DST operatorSøren Sandmann Pedersen2-2/+19
The DST operator doesn't actually do anything, so add a noop "fast path" for it, instead of checking in pixman_image_composite32(). The performance tradeoff here is that we get rid of a test for DST in the common case where the operator is not DST, in return for an extra walk over the clip rectangles in the uncommon case where the operator actually is DST.
2011-05-19Add a "noop" implementation.Søren Sandmann Pedersen4-0/+51
This new implementation is ahead of all other implementations in the fallback chain and is supposed to contain operations that are "noops", ie., they don't require any work. For example, it might contain a "fast path" for the DST operator that doesn't actually do anything or an iterator for a8r8g8b8 that just returns a pointer into the image.
2011-05-17test: Fix compilation on win32Andrea Canciani1-3/+1
MSVC complains about uint32_t being used as an expression: composite.c(902) : error C2275: 'uint32_t' : illegal use of this type as an expression
2011-05-09Check for working mmap()Dave Yeo2-1/+6
OS/2 doesn't have a working mmap().
2011-05-02Post-release version bump to 0.23.1Søren Sandmann Pedersen1-2/+2
2011-05-02Pre-release version bump to 0.22.0Søren Sandmann Pedersen1-2/+2
2011-04-19Post-release version bump to 0.21.9Søren Sandmann Pedersen1-1/+1
2011-04-19Pre-release version bump to 0.21.8Søren Sandmann Pedersen1-1/+1
2011-04-18ARM: Enable bilinear fast paths using scanline functions in ↵Taekyun Kim1-0/+39
pixman-arm-neon-asm-bilinear.S Enable fast paths which is supported by scanline functions in pixman-arm-neon-asm-bilinear.S
2011-04-18ARM: NEON scanline functions for bilinear scalingTaekyun Kim2-0/+769
General fetch->combine->store based bilinear scanline functions. Need further optimizations and eventually will be replaced with optimal functions one by one. General functions should be located in pixman-arm-neon-asm-bilinear.S and optimal functions in pixman-arm-neon-asm.S Following general bilinear scanline functions are implemented over_8888_8888 add_8888_8888 src_8888_8_8888 src_8888_8_0565 src_0565_8_x888 src_0565_8_0565 over_8888_8_8888 add_8888_8_8888
2011-04-18ARM: Common macro for scaled bilinear scanline function with A8 maskTaekyun Kim1-0/+45
Defining PIXMAN_ARM_BIND_SCALED_BILINEAR_SRC_A8_DST macro for declaration of scaled bilinear scanline functions in common header.
2011-04-18Offset rendering in pixman_composite_trapezoids() by (x_dst, y_dst)Søren Sandmann Pedersen3-8/+19
Previously, this function would do coordinate calculations in such a way that (x_dst, y_dst) would only affect the alignment of the source image, but not of the traps, which would always be considered to be in absolute destination coordinates. This is unlike the pixman_image_composite() function which also registers the mask to the destination. This patch makes it so that traps are also offset by (x_dst, y_dst). Also add a comment explaining how this function is supposed to operate, and update tri-test.c and composite-trap-test.c to deal with the new semantics.
2011-04-18ARM: Add 'neon_composite_over_n_8888_0565_ca' fast pathSøren Sandmann Pedersen2-0/+173
This improves the performance of the firefox-talos-gfx benchmark with the image16 backend. Benchmark on an 800 MHz ARM Cortex A8: Before: [ # ] backend test min(s) median(s) stddev. count [ 0] image16 firefox-talos-gfx 121.773 122.218 0.15% 6/6 After: [ # ] backend test min(s) median(s) stddev. count [ 0] image16 firefox-talos-gfx 85.247 85.563 0.22% 6/6 V2: Slightly better instruction scheduling based on comments from Taekyun Kim. V3: Eliminate all stalls from the inner loop. Also based on comments from Taekyun Kim.
2011-04-18Fix OpenMP not supported caseGilles Espinasse1-20/+27
PIXMAN_LINK_WITH_ENV did not fail unless -Wall -Werror is used. So even when the compiler did not support OpenMP, USE_OPENMP was defined. Fix that by running the second OpenMP test only when first AC_OPENMP find supported configure tested in the cases : gcc without libgomp support, no openmp option, --enable-openmp and --disable-openmp gcc with libgomp support, no openmp option, --enable-openmp and --disable-openmp Not tested with autoconf version not knowing openmp (<2.62) Warn when --enable-openmp is requested but no support is found Signed-off-by: Gilles Espinasse <g.esp@free.fr>
2011-04-18Fix missing AC_MSG_RESULT value from Werror testGilles Espinasse1-1/+1
Use the correct variable name Signed-off-by: Gilles Espinasse <g.esp@free.fr>
2011-04-11ARM: pipelined NEON implementation of bilinear scaled 'src_8888_0565'Siarhei Siamashka1-1/+244
Benchmark on ARM Cortex-A8 r1p3 @600MHz, 32-bit LPDDR @166MHz: Microbenchmark (scaling 2000x2000 image with scale factor close to 1x): before: op=1, src=20028888, dst=10020565, speed=33.59 MPix/s after: op=1, src=20028888, dst=10020565, speed=46.25 MPix/s Benchmark on ARM Cortex-A8 r2p2 @1GHz, 32-bit LPDDR @200MHz: Microbenchmark (scaling 2000x2000 image with scale factor close to 1x): before: op=1, src=20028888, dst=10020565, speed=63.86 MPix/s after: op=1, src=20028888, dst=10020565, speed=84.22 MPix/s
2011-04-11ARM: pipelined NEON implementation of bilinear scaled 'src_8888_8888'Siarhei Siamashka1-0/+127
Performance of the inner loop when working with the data in L1 cache: ARM Cortex-A8: 41 cycles per 4 pixels (no stalls and partial dual issue) ARM Cortex-A9: 48 cycles per 4 pixels (no stalls) It might be still possible to improve performance even more on ARM Cortex-A8 with a better use of dual issue. Benchmark on ARM Cortex-A8 r1p3 @600MHz, 32-bit LPDDR @166MHz: Microbenchmark (scaling 2000x2000 image with scale factor close to 1x): before: op=1, src=20028888, dst=20028888, speed=40.38 MPix/s after: op=1, src=20028888, dst=20028888, speed=48.47 MPix/s Benchmark on ARM Cortex-A8 r2p2 @1GHz, 32-bit LPDDR @200MHz: Microbenchmark (scaling 2000x2000 image with scale factor close to 1x): before: op=1, src=20028888, dst=20028888, speed=79.68 MPix/s after: op=1, src=20028888, dst=20028888, speed=93.11 MPix/s
2011-04-11ARM: support different levels of loop unrolling in bilinear scalerSiarhei Siamashka1-8/+76
Now an extra 'flag' parameter is supported in bilinear scaline scaling function generation macro. It can be used to enable 4 or 8 pixels per loop iteration unrolling and provide save/restore code for d8-d15 registers.
2011-04-11ARM: use less ARM instructions in NEON bilinear scaling codeSiarhei Siamashka1-41/+38
This reduces code size and also puts less pressure on the instruction decoder.
2011-04-11ARM: support for software pipelining in bilinear macrosSiarhei Siamashka1-3/+28
Now it's possible to override the main loop of bilinear scaling code with optimized pipelined implementation.
2011-04-11ARM: use aligned memory writes in NEON bilinear scaling codeSiarhei Siamashka1-14/+35
2011-04-11ARM: tweaked horizontal weights update in NEON bilinear scaling codeSiarhei Siamashka1-9/+11
Moving horizontal interpolation weights update instructions from the beginning of loop to its end allows to hide some pipeline stalls and improve performance.
2011-04-06ARM: Tiny improvement in over_n_8888_8888_ca_process_pixblock_headSøren Sandmann Pedersen1-3/+2
Instead of two mvn d24, d24 mvn d25, d25 use just one mvn q12, q12 Also move another vmvn instruction into the created pipeline bubble, as pointed out by Siarhei.
2011-04-06Makefile.am: Put development releases in "snapshots" directorySøren Sandmann Pedersen1-4/+3
Up until now, all pixman release, both snapshots and releases were uploaded to the "releases" directory on www.cairographics.org, but it's better to development snapshots in the "snapshots" directory. This patch changes Makefile.am to do that.
2011-03-22test: Fix infinite loop in compositeSøren Sandmann Pedersen1-4/+4
When run in PIXMAN_RANDOMIZE_TESTS mode, this test would go into an infinite loop because the loop started at 'seed' but the stop condition was still N_TESTS.
2011-03-22Add support for the r8g8b8a8 and r8g8b8x8 formats to the tests.Alexandros Frantzis4-2/+28
2011-03-22Add simple support for the r8g8b8a8 and r8g8b8x8 formats.Alexandros Frantzis3-1/+108
This format is particularly useful on big-endian architectures, where RGBA in memory/file order corresponds to r8g8b8a8 as an uint32_t. This is important because RGBA is in some cases the only available choice (for example as a pixel format in OpenGL ES 2.0).
2011-03-19test: Randomize some tests if PIXMAN_RANDOMIZE_TESTS is setSøren Sandmann Pedersen4-16/+51
This patch makes so that composite and stress-test will start from a random seed if the PIXMAN_RANDOMIZE_TESTS environment variable is set. Running the test suite in this mode is useful to get more test coverage. Also, in stress-test.c make it so that setting the initial seed causes threads to be turned off. This makes it much easier to see when something fails.
2011-03-18Simplify the prototype for iterator initializers.Søren Sandmann Pedersen9-153/+61
All of the information previously passed to the iterator initializers is now available in the iterator itself, so there is no need to pass it as arguments anymore.
2011-03-18Fill out parts of iters in _pixman_implementation_{src,dest}_iter_init()Søren Sandmann Pedersen4-11/+24
This makes _pixman_implementation_{src,dest}_iter_init() responsible for filling parts of the information in the iterators. Specifically, the information passed as arguments is stored in the iterator. Also add a height field to pixman_iter_t().