summaryrefslogtreecommitdiff
path: root/gdk-pixbuf/pixops
diff options
context:
space:
mode:
authorOwen Taylor <otaylor@redhat.com>2002-01-11 22:54:53 +0000
committerOwen Taylor <otaylor@src.gnome.org>2002-01-11 22:54:53 +0000
commita458dd72e50a4b770dd69fbaaa6943753d4b7a24 (patch)
tree5aac0ceb4de28244ce78aa5794205aaa602dbcc8 /gdk-pixbuf/pixops
parent9022abe3cdb60a7d2a8467bff78812ce4b7b2d64 (diff)
downloadgdk-pixbuf-a458dd72e50a4b770dd69fbaaa6943753d4b7a24.tar.gz
Remove meaningless FIXME.
Fri Jan 11 17:53:58 2002 Owen Taylor <otaylor@redhat.com> * pixops/pixops.c (pixops_scale_nearest): Remove meaningless FIXME. * pixops/pixops.c (pixops_process): Comment the computation of run_end_index and fix some edge cases. * pixops/{scale_line_22_33_mmx.S, composite_line_22_4a4_mmx.S: composite_line_color_22_4a4_mmx.S}: Handle the case where dest <= dest_end properly. (#52001)
Diffstat (limited to 'gdk-pixbuf/pixops')
-rw-r--r--gdk-pixbuf/pixops/README2
-rw-r--r--gdk-pixbuf/pixops/composite_line_22_4a4_mmx.S4
-rw-r--r--gdk-pixbuf/pixops/composite_line_color_22_4a4_mmx.S4
-rw-r--r--gdk-pixbuf/pixops/pixops.c48
-rw-r--r--gdk-pixbuf/pixops/scale_line_22_33_mmx.S4
5 files changed, 41 insertions, 21 deletions
diff --git a/gdk-pixbuf/pixops/README b/gdk-pixbuf/pixops/README
index c79e0e2fd..354c3a197 100644
--- a/gdk-pixbuf/pixops/README
+++ b/gdk-pixbuf/pixops/README
@@ -40,8 +40,6 @@ rounding the exact result (real values in [0,1]):
Cc = ROUND [255. * (Ca/255. * Aa/255. + (1 - Aa/255.) * Cb/255.)]
-We can comp
-
ROUND(i / 255.) can be computed exactly for i in [0,255*255] as:
t = i + 0x80; result = (t + (t >> 8)) >> 8; [ call this as To8(i) ]
diff --git a/gdk-pixbuf/pixops/composite_line_22_4a4_mmx.S b/gdk-pixbuf/pixops/composite_line_22_4a4_mmx.S
index 3b3c2c472..3376f9230 100644
--- a/gdk-pixbuf/pixops/composite_line_22_4a4_mmx.S
+++ b/gdk-pixbuf/pixops/composite_line_22_4a4_mmx.S
@@ -53,8 +53,8 @@ _pixops_composite_line_22_4a4_mmx:
movl %edx,-24(%ebp)
- cmpl %esi,28(%ebp)
- je .out
+ cmpl 28(%ebp),%esi
+ jnb .out
/* Load initial values into %mm1, %mm3 */
shll $2, %edx
diff --git a/gdk-pixbuf/pixops/composite_line_color_22_4a4_mmx.S b/gdk-pixbuf/pixops/composite_line_color_22_4a4_mmx.S
index 28d2c8b85..feebae420 100644
--- a/gdk-pixbuf/pixops/composite_line_color_22_4a4_mmx.S
+++ b/gdk-pixbuf/pixops/composite_line_color_22_4a4_mmx.S
@@ -57,8 +57,8 @@ _pixops_composite_line_color_22_4a4_mmx:
movl %edx,-24(%ebp)
- cmpl %esi,28(%ebp)
- je .out
+ cmpl 28(%ebp),%esi
+ jnb .out
/* Load initial values into %mm1, %mm3 */
shll $2, %edx
diff --git a/gdk-pixbuf/pixops/pixops.c b/gdk-pixbuf/pixops/pixops.c
index 879211492..a2fcbb08e 100644
--- a/gdk-pixbuf/pixops/pixops.c
+++ b/gdk-pixbuf/pixops/pixops.c
@@ -94,7 +94,6 @@ pixops_scale_nearest (guchar *dest_buf,
for (i = 0; i < (render_y1 - render_y0); i++)
{
const guchar *src = src_buf + (((i + render_y0) * y_step + y_step / 2) >> SCALE_SHIFT) * src_rowstride;
- /* FIXME Owen needs to look at this */
guchar *dest = dest_buf + i * dest_rowstride;
x = render_x0 * x_step + x_step / 2;
@@ -967,21 +966,36 @@ pixops_process (guchar *dest_buf,
PixopsPixelFunc pixel_func)
{
int i, j;
- int x, y;
+ int x, y; /* X and Y position in source (fixed_point) */
guchar **line_bufs = g_new (guchar *, filter->n_y);
- int x_step = (1 << SCALE_SHIFT) / scale_x;
- int y_step = (1 << SCALE_SHIFT) / scale_y;
+ int x_step = (1 << SCALE_SHIFT) / scale_x; /* X step in source (fixed point) */
+ int y_step = (1 << SCALE_SHIFT) / scale_y; /* Y step in source (fixed point) */
+
+ int check_shift = check_size ? get_check_shift (check_size) : 0;
- int dest_x;
int scaled_x_offset = floor (filter->x_offset * (1 << SCALE_SHIFT));
- int run_end_index = (((src_width - filter->n_x + 1) << SCALE_SHIFT) - scaled_x_offset - 1) / x_step + 1 - render_x0;
- int check_shift = check_size ? get_check_shift (check_size) : 0;
+ /* Compute the index where we run off the end of the source buffer. The furthest
+ * source pixel we access at index i is:
+ *
+ * ((render_x0 + i) * x_step + scaled_x_offset) >> SCALE_SHIFT + filter->n_x - 1
+ *
+ * So, run_end_index is the smallest i for which this pixel is src_width, i.e, for which:
+ *
+ * (i + render_x0) * x_step >= ((src_width - filter->n_x + 1) << SCALE_SHIFT) - scaled_x_offset
+ *
+ */
+#define MYDIV(a,b) ((a) > 0 ? (a) / (b) : ((a) - (b) + 1) / (b)) /* Division so that -1/5 = -1 */
+
+ int run_end_x = (((src_width - filter->n_x + 1) << SCALE_SHIFT) - scaled_x_offset);
+ int run_end_index = MYDIV (run_end_x + x_step - 1, x_step) - render_x0;
+ run_end_index = MIN (run_end_index, render_x1 - render_x0);
y = render_y0 * y_step + floor (filter->y_offset * (1 << SCALE_SHIFT));
for (i = 0; i < (render_y1 - render_y0); i++)
{
+ int dest_x;
int y_start = y >> SCALE_SHIFT;
int x_start;
int *run_weights = filter->weights + ((y >> (SCALE_SHIFT - SUBSAMPLE_BITS)) & SUBSAMPLE_MASK) * filter->n_x * filter->n_y * SUBSAMPLE;
@@ -1032,12 +1046,12 @@ pixops_process (guchar *dest_buf,
outbuf += dest_channels;
}
- new_outbuf = (*line_func)(run_weights, filter->n_x, filter->n_y,
- outbuf, dest_x,
- MIN (outbuf_end, dest_buf + dest_rowstride * i + run_end_index * dest_channels),
- dest_channels, dest_has_alpha,
- line_bufs, src_channels, src_has_alpha,
- x, x_step, src_width, check_size, tcolor1, tcolor2);
+ new_outbuf = (*line_func) (run_weights, filter->n_x, filter->n_y,
+ outbuf, dest_x,
+ dest_buf + dest_rowstride * i + run_end_index * dest_channels,
+ dest_channels, dest_has_alpha,
+ line_bufs, src_channels, src_has_alpha,
+ x, x_step, src_width, check_size, tcolor1, tcolor2);
dest_x += (new_outbuf - outbuf) / dest_channels;
@@ -1180,6 +1194,10 @@ bilinear_make_fast_weights (PixopsFilter *filter, double x_scale, double y_scale
}
else /* Tile */
{
+ /* x
+ * ---------|--.-|----|--.-|------- SRC
+ * ------------|---------|--------- DEST
+ */
for (i = 0; i < n_x; i++)
{
if (i < x)
@@ -1208,6 +1226,10 @@ bilinear_make_fast_weights (PixopsFilter *filter, double x_scale, double y_scale
}
else /* Tile */
{
+ /* y
+ * ---------|--.-|----|--.-|------- SRC
+ * ------------|---------|--------- DEST
+ */
for (i = 0; i < n_y; i++)
{
if (i < y)
diff --git a/gdk-pixbuf/pixops/scale_line_22_33_mmx.S b/gdk-pixbuf/pixops/scale_line_22_33_mmx.S
index 8259a9db3..a67d8572c 100644
--- a/gdk-pixbuf/pixops/scale_line_22_33_mmx.S
+++ b/gdk-pixbuf/pixops/scale_line_22_33_mmx.S
@@ -52,8 +52,8 @@ _pixops_scale_line_22_33_mmx:
sarl $16,%edx
movl 12(%ebp),%esi
- cmpl %esi,28(%ebp)
- je .out
+ cmpl 28(%ebp),%esi
+ jnb .out
/* For the body of this loop, %mm01, %mm1, %mm2, %mm3 hold the 4 adjoining
* points we are interpolating between, as: