[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

pixman: Changes to 'refs/tags/pixman-0.10.0-1'



Tag 'pixman-0.10.0-1' created by Julien Cristau <jcristau@debian.org> at 2008-04-04 12:38 +0000

Tagging upload of pixman 0.10.0-1 to unstable.

Changes since pixman-0.9.6-1:
Aaron Plattner (5):
      Rename pixman-compose-operators.c to pixman-combine.c and fix the build.
      Get rid of fbPrepareAccess and fbFinishAccess, since the former was unused and neither one did anything anyway.
      Move fetch, fetchPixel, and store routines into pixman-access.c.
      Move pixmanFetchSourcePict and friends into pixman-source.c.
      Move fbFetchTransformed and friends into pixman-transformed.c.

Alan Hourihane (3):
      Merge branch 'master' of git+ssh://git.freedesktop.org/git/pixman into yuv-porting
      Merge branch 'master' of git+ssh://git.freedesktop.org/git/pixman into yuv-porting
      Merge branch 'master' of git+ssh://git.freedesktop.org/git/pixman into yuv-porting

Alp Toker (1):
      Avoid use of C++ keyword xor in header

Antoine Azar (4):
      Refactor fbFetchTransformed()
      Fix EXTEND_PAD for untransformed sources
      Fixed transformed/untransformed cases of extend_pad by using fbfetchtransformed in all cases and making sure no fast path can be taken.
      Moved all composition operators from pixman-compose.c to their own c/h file

Bertram Felgenhauer (5):
      fix cairo's  a1-image-sample  test
      fix cairo's  a1-traps-sample  test
      eliminate a special case in fbRasterizeEdges{4,8}.
      export pixman_transform_point_3d function
      Fix a NULL pointer dereference in fbFetchFromNRectangles().

Carl Worth (10):
      Track name change from pixman.pc to pixman-1.pc in .gitignore
      Add release-publish target and RELEASING instructions
      Ignore test/fetch-test
      Merge commit 'inte/sampling'
      A tiny amount of ifdef reduction.
      Document incrementing the micro version immediately after a release
      Increment pixman version to 0.9.7
      Add pixman_version function and related macros
      New API: pixman_format_supported_destination and pixman_format_supported_source
      Eliminate duplicate case values that were breaking the compilation.

Frederic Plourde (1):
      Enable/fix MMX compilation under Win32 with Visual Studio

José Fonseca (8):
      Perform stride calculations inside the callback functions.
      New test for image fetching.
      YUV formats fetch support.
      MMX code path for YV12 copy, taken from the xserver glucose-2 branch.
      Remove the MMX code path for YV12 for the meanwhile, as pixel output is not
      Remove the macro magic from READ/WRITE macros.
      Use a consistent type for stride and more importantly, use always a signed type.
      Prevent promotion to unsigned when calculating strides.

Julien Cristau (8):
      Run autoreconf at build-time
      Delete files generated by autoreconf
      Merge tag 'pixman-0.10.0' into debian-unstable
      New upstream release.
      Add symbols file for libpixman-1-0.
      Bump Standards-Version to 3.7.3.
      Add Vcs-Git and Vcs-Browser control fields.
      Prepare changelog for upload

Kamalneet Singh (1):
      Fix computation of x_offset in pixman_add_traps.

Rodrigo Kumpera (1):
      Add build system support for SSE2.

Søren Sandmann (19):
      Beginning of the end for the Switch of Doom.
      Add code to locate fast paths. Comment out switch of doom.
      Check for correct op.
      Delete switch of doom.
      Add some commented-out plain C fast paths.
      Conditionalize MMX code with USE_MMX
      Set maskRepeat to FALSE when the function is NEED_SOLID_MASK
      Make the tables static; remove unused flag
      Use -fvisibility=hidden by default.
      Guard MMX get_fast_path() with pixman_have_mmx()
      Don't use the pixbuf fast paths when the source picture has alpha. Bug
      Update TODO
      Add rounding epsilon for NEAREST filter after transformation, not before.
      Require MMX and MMX_Extensions for SSE. Various code style fixes.
      Fix typo; include pixman-sse.h
      Update TODO
      Make pixman-version.h print an error if you include it by itself
      Move version functions from pixman-version.c into pixman-utils.c.
      Make it distcheck

Søren Sandmann Pedersen (4):
      Fix another NULL dereference in pixman-compose.c, reported by Joel
      Make username configurable; add Makefile.win32 to EXTRA_DIST
      Bump version to 0.10.0.
      Fix log generation

Vladimir Vukicevic (5):
      Remove last CVS $Id$ tags
      Remove trailing ; in SETUP_YV12 macro
      Include only pixman-private.h, not pixman.h, in local .c files
      Only define pixman_have_sse() as function if USE_SSE2 is also defined
      Fix up unsigned long long/ullong usage

nmiell@gmail.com (1):
      Fix the SSE related AMD64 build breakage

---
 .gitignore                             |    4 
 INSTALL                                |  234 
 Makefile.am                            |  121 
 Makefile.in                            |  672 -
 RELEASING                              |   67 
 TODO                                   |   71 
 aclocal.m4                             | 7642 -----------
 compile                                |  142 
 config.guess                           | 1516 --
 config.h.in                            |   68 
 config.sub                             | 1626 --
 configure                              |21569 ---------------------------------
 configure.ac                           |   91 
 debian/changelog                       |   16 
 debian/control                         |    6 
 debian/libpixman-1-0.shlibs            |    2 
 debian/libpixman-1-0.symbols           |   64 
 debian/patches/01_maintainer-mode.diff |   13 
 debian/patches/series                  |    1 
 debian/rules                           |   37 
 depcomp                                |  584 
 install-sh                             |  507 
 ltmain.sh                              | 6938 ----------
 missing                                |  367 
 pixman/Makefile.am                     |   48 
 pixman/Makefile.in                     |  570 
 pixman/Makefile.win32                  |   97 
 pixman/pixman-access-accessors.c       |    3 
 pixman/pixman-access.c                 | 1686 ++
 pixman/pixman-combine.c                | 1260 +
 pixman/pixman-compose.c                | 4150 ------
 pixman/pixman-edge-imp.h               |   64 
 pixman/pixman-edge.c                   |   66 
 pixman/pixman-image.c                  |   75 
 pixman/pixman-mmx.c                    |  670 -
 pixman/pixman-mmx.h                    |    5 
 pixman/pixman-pict.c                   | 1106 -
 pixman/pixman-private.h                |  138 
 pixman/pixman-region.c                 |    1 
 pixman/pixman-source.c                 |  681 +
 pixman/pixman-sse.c                    |   51 
 pixman/pixman-sse.h                    |   53 
 pixman/pixman-transformed-accessors.c  |    3 
 pixman/pixman-transformed.c            |  726 +
 pixman/pixman-trap.c                   |    6 
 pixman/pixman-utils.c                  |  218 
 pixman/pixman-version.h.in             |   50 
 pixman/pixman.h                        |   97 
 test/Makefile.am                       |    6 
 test/Makefile.in                       |  459 
 test/fetch-test.c                      |  163 
 51 files changed, 6579 insertions(+), 48231 deletions(-)
---


Reply to: