Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 432814 | Differences between
and this patch

Collapse All | Expand All

(-)chromium-22.0.1229.14/third_party/qcms/src.orig/chain.c (+2 lines)
Lines 29-34 Link Here
29
#include "transform_util.h"
29
#include "transform_util.h"
30
#include "matrix.h"
30
#include "matrix.h"
31
31
32
#pragma GCC target ("no-sse2")
33
32
static struct matrix build_lut_matrix(struct lutType *lut)
34
static struct matrix build_lut_matrix(struct lutType *lut)
33
{
35
{
34
	struct matrix result;
36
	struct matrix result;
(-)chromium-22.0.1229.14/third_party/qcms/src.orig/iccread.c (+2 lines)
Lines 27-32 Link Here
27
#include <string.h> //memset
27
#include <string.h> //memset
28
#include "qcmsint.h"
28
#include "qcmsint.h"
29
29
30
#pragma GCC target ("no-sse2")
31
30
/* It might be worth having a unified limit on content controlled
32
/* It might be worth having a unified limit on content controlled
31
 * allocation per profile. This would remove the need for many
33
 * allocation per profile. This would remove the need for many
32
 * of the arbitrary limits that we used */
34
 * of the arbitrary limits that we used */
(-)chromium-22.0.1229.14/third_party/qcms/src.orig/matrix.c (+2 lines)
Lines 25-30 Link Here
25
#include "qcmsint.h"
25
#include "qcmsint.h"
26
#include "matrix.h"
26
#include "matrix.h"
27
27
28
#pragma GCC target ("no-sse2")
29
28
struct vector matrix_eval(struct matrix mat, struct vector v)
30
struct vector matrix_eval(struct matrix mat, struct vector v)
29
{
31
{
30
	struct vector result;
32
	struct vector result;
(-)chromium-22.0.1229.14/third_party/qcms/src.orig/transform.c (+2 lines)
Lines 30-35 Link Here
30
#include "matrix.h"
30
#include "matrix.h"
31
#include "transform_util.h"
31
#include "transform_util.h"
32
32
33
#pragma GCC target ("no-sse2")
34
33
/* for MSVC, GCC, Intel, and Sun compilers */
35
/* for MSVC, GCC, Intel, and Sun compilers */
34
#if defined(_M_IX86) || defined(__i386__) || defined(__i386) || defined(_M_AMD64) || defined(__x86_64__) || defined(__x86_64)
36
#if defined(_M_IX86) || defined(__i386__) || defined(__i386) || defined(_M_AMD64) || defined(__x86_64__) || defined(__x86_64)
35
#define X86
37
#define X86
(-)chromium-22.0.1229.14/third_party/qcms/src.orig/transform_util.c (+2 lines)
Lines 28-33 Link Here
28
#include "transform_util.h"
28
#include "transform_util.h"
29
#include "matrix.h"
29
#include "matrix.h"
30
30
31
#pragma GCC target ("no-sse2")
32
31
#if !defined(INFINITY)
33
#if !defined(INFINITY)
32
#define INFINITY HUGE_VAL
34
#define INFINITY HUGE_VAL
33
#endif
35
#endif

Return to bug 432814