2019-07-09 23:21:11 +02:00
|
|
|
# HG changeset patch
|
|
|
|
# User msirringhaus@suse.de
|
|
|
|
# Date 1558452418 -7200
|
|
|
|
# Tue May 21 17:26:58 2019 +0200
|
|
|
|
# Node ID 6cd963b6c82ea6629aaf4050851789b78f310338
|
2020-03-12 20:14:24 +01:00
|
|
|
# Parent 74d44a14979d4ed1431d8291e20775339a5a6510
|
2019-07-09 23:21:11 +02:00
|
|
|
imported patch mozilla-ppc-altivec_static_inline.patch
|
|
|
|
|
2019-09-09 08:28:12 +02:00
|
|
|
diff --git a/gfx/qcms/transform-altivec.cpp b/gfx/qcms/transform-altivec.cpp
|
|
|
|
--- a/gfx/qcms/transform-altivec.cpp
|
|
|
|
+++ b/gfx/qcms/transform-altivec.cpp
|
|
|
|
@@ -25,17 +25,17 @@
|
|
|
|
|
|
|
|
#include "qcmsint.h"
|
|
|
|
|
|
|
|
#define FLOATSCALE (float)(PRECACHE_OUTPUT_SIZE)
|
|
|
|
#define CLAMPMAXVAL (((float) (PRECACHE_OUTPUT_SIZE - 1)) / PRECACHE_OUTPUT_SIZE)
|
2019-07-09 23:21:11 +02:00
|
|
|
static const ALIGN float floatScaleX4 = FLOATSCALE;
|
|
|
|
static const ALIGN float clampMaxValueX4 = CLAMPMAXVAL;
|
|
|
|
|
|
|
|
-inline vector float load_aligned_float(float *dataPtr)
|
|
|
|
+static inline vector float load_aligned_float(float *dataPtr)
|
|
|
|
{
|
|
|
|
vector float data = vec_lde(0, dataPtr);
|
|
|
|
vector unsigned char moveToStart = vec_lvsl(0, dataPtr);
|
2019-09-09 08:28:12 +02:00
|
|
|
return vec_perm(data, data, moveToStart);
|
|
|
|
}
|
|
|
|
|
|
|
|
template <size_t kRIndex, size_t kGIndex, size_t kBIndex, size_t kAIndex = NO_A_INDEX>
|
|
|
|
static void qcms_transform_data_template_lut_altivec(const qcms_transform *transform,
|