forked from pool/cairo
Accepting request 290782 from home:FunkyM:branches:GNOME:Factory
Fixes crashes in various GNOME apps (like baobab and general cairo consumers) due to a bug of 1.14.0. OBS-URL: https://build.opensuse.org/request/show/290782 OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/cairo?expand=0&rev=91
This commit is contained in:
parent
c8e93b3f3f
commit
63d03275eb
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:2cf5f81432e77ea4359af9dcd0f4faf37d015934501391c311bfd2d19a0134b7
|
|
||||||
size 36584076
|
|
3
cairo-1.14.2.tar.xz
Normal file
3
cairo-1.14.2.tar.xz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:c919d999ddb1bbbecd4bbe65299ca2abd2079c7e13d224577895afa7005ecceb
|
||||||
|
size 35376404
|
@ -1,34 +0,0 @@
|
|||||||
From 2de69581c28bf115852037ca41eba13cb7335976 Mon Sep 17 00:00:00 2001
|
|
||||||
From: Massimo Valentini <mvalentini@src.gnome.org>
|
|
||||||
Date: Sun, 19 Oct 2014 09:19:10 +0200
|
|
||||||
Subject: tor-scan-converter: can't do_fullrow when intersection in row +
|
|
||||||
0.5subrow
|
|
||||||
|
|
||||||
the active edges list must be left sorted at the next possible use
|
|
||||||
and since full_row does not deal with intersections it is not usable
|
|
||||||
when there is an intersection in the top half of the next row first
|
|
||||||
subrow
|
|
||||||
|
|
||||||
Reported-and-tested-by: Matthew Leach
|
|
||||||
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=85151
|
|
||||||
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
|
|
||||||
|
|
||||||
diff --git a/src/cairo-tor-scan-converter.c b/src/cairo-tor-scan-converter.c
|
|
||||||
index 4adcafb..14922d0 100644
|
|
||||||
--- a/src/cairo-tor-scan-converter.c
|
|
||||||
+++ b/src/cairo-tor-scan-converter.c
|
|
||||||
@@ -1167,8 +1167,8 @@ can_do_full_row (struct active_list *active)
|
|
||||||
|
|
||||||
if (e->dy) {
|
|
||||||
struct quorem x = e->x;
|
|
||||||
- x.quo += e->dxdy_full.quo - e->dxdy.quo/2;
|
|
||||||
- x.rem += e->dxdy_full.rem - e->dxdy.rem/2;
|
|
||||||
+ x.quo += e->dxdy_full.quo;
|
|
||||||
+ x.rem += e->dxdy_full.rem;
|
|
||||||
if (x.rem < 0) {
|
|
||||||
x.quo--;
|
|
||||||
x.rem += e->dy;
|
|
||||||
--
|
|
||||||
cgit v0.10.2
|
|
||||||
|
|
||||||
|
|
@ -1,3 +1,53 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Sat Mar 14 12:30:22 UTC 2015 - opensuse@mirell.de
|
||||||
|
|
||||||
|
- Update to version 1.14.2:
|
||||||
|
+ Features:
|
||||||
|
- Improve xcb's handling of per-screen subpixel ordering. If
|
||||||
|
no Xft.rgba property is specified, default to the screen's
|
||||||
|
subpixel order.
|
||||||
|
+ Performance Optimizations:
|
||||||
|
- Improve performance of cpu_to_be32 and be32_to_cpu, making
|
||||||
|
truetype subsetting of large fonts run about 15% faster.
|
||||||
|
+ Bug fixes:
|
||||||
|
- Fix unaligned access on sparc with the compact font format
|
||||||
|
(CFF).
|
||||||
|
Unlike truetype, all data in CFF is not aligned.
|
||||||
|
(Debian bug #712836)
|
||||||
|
- Fix unaligned access on sparc with tor-scan-converter's
|
||||||
|
memory pool.
|
||||||
|
- Fix crash when loading a PDF with a transformed image.
|
||||||
|
(fdo bug #85151)
|
||||||
|
- Fix regression on mingw for bigendian test due to removal of
|
||||||
|
file extension for executables. (fdo bug #85120)
|
||||||
|
- Fix handling of backslash in PDF interpreter (fdo bug #85662)
|
||||||
|
- Fix crash in xlib and xcb renderers when swapping a 0-sized
|
||||||
|
glyph
|
||||||
|
- Fix bug with RTL text in PDF operators (fdo bug #86461)
|
||||||
|
- Fix compilation 'cairo-path-stroke-traps.c' with MSVC8
|
||||||
|
(fdo bug #84908)
|
||||||
|
- Fix crash in _fill_xrgb32_lerp_opaque_spans when a span
|
||||||
|
length is negative.
|
||||||
|
- Fix valgrind error by releasing pattern created by
|
||||||
|
cairo_pattern_create_rgb().
|
||||||
|
- Fix valgrind errors when running cairo-test-suite.
|
||||||
|
- Fix memory leak in recording surface replays (fdo bug #87898)
|
||||||
|
- Fix destruction of fonts in api-special-cases test.
|
||||||
|
(fdo bug #87567)
|
||||||
|
- Fix duplicated surface push on similar-image, preventing
|
||||||
|
trivial GTK3 program traces from being replayable, with an
|
||||||
|
error message about invalid values for the size of the input.
|
||||||
|
(fdo bug #73580)
|
||||||
|
- Fix crash when win32 surface's image size does not cover the
|
||||||
|
entire
|
||||||
|
surface. (fdo bug #53121)
|
||||||
|
- Fix crash due to obsolete CGFontGetGlyphPath call
|
||||||
|
(fdo bug #84324)
|
||||||
|
- Fix several build issues on AIX (fdo bugs #89338, #89340,
|
||||||
|
#89356, #89354)
|
||||||
|
- Fix various documentation warnings and errors
|
||||||
|
- Remove cairo-tor-scan-convertor.patch. It was upstreamed.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Jan 9 13:50:03 UTC 2015 - tchvatal@suse.com
|
Fri Jan 9 13:50:03 UTC 2015 - tchvatal@suse.com
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package cairo
|
# spec file for package cairo
|
||||||
#
|
#
|
||||||
# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -19,7 +19,7 @@
|
|||||||
%define build_xcb_backend 1
|
%define build_xcb_backend 1
|
||||||
%define build_gl_backend 1
|
%define build_gl_backend 1
|
||||||
Name: cairo
|
Name: cairo
|
||||||
Version: 1.14.0
|
Version: 1.14.2
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Vector Graphics Library with Cross-Device Output Support
|
Summary: Vector Graphics Library with Cross-Device Output Support
|
||||||
License: LGPL-2.1+ or MPL-1.1
|
License: LGPL-2.1+ or MPL-1.1
|
||||||
@ -35,8 +35,6 @@ Patch1: cairo-disable-lto.patch
|
|||||||
Patch2: cairo-render-thin-lines.patch
|
Patch2: cairo-render-thin-lines.patch
|
||||||
# PATCH-FIX-UPSTREAM cairo-xlib-endianness.patch fdo#63461 bnc#882951 fcrozat@suse.com -- Fix crash when client and server have different endianness
|
# PATCH-FIX-UPSTREAM cairo-xlib-endianness.patch fdo#63461 bnc#882951 fcrozat@suse.com -- Fix crash when client and server have different endianness
|
||||||
Patch3: cairo-xlib-endianness.patch
|
Patch3: cairo-xlib-endianness.patch
|
||||||
# PATCH-FIX-UPSTREAM cairo-tor-scan-convertor.patch fdo#85151 dimstar@opensuse.org -- tor-scan-converter: can't do_fullrow when intersection in row + 0.5subrow
|
|
||||||
Patch4: cairo-tor-scan-convertor.patch
|
|
||||||
BuildRequires: gtk-doc
|
BuildRequires: gtk-doc
|
||||||
# Needed by patch0
|
# Needed by patch0
|
||||||
BuildRequires: libtool
|
BuildRequires: libtool
|
||||||
@ -151,7 +149,6 @@ cairo.
|
|||||||
# fix_for_fdo77298.patch
|
# fix_for_fdo77298.patch
|
||||||
%patch2 -p1
|
%patch2 -p1
|
||||||
%patch3 -p1
|
%patch3 -p1
|
||||||
%patch4 -p1
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
# Needed by patch0 and patch1
|
# Needed by patch0 and patch1
|
||||||
|
Loading…
Reference in New Issue
Block a user