quick fix for initializing arrays in benchmark.

2000-01-05  Owen Taylor  <otaylor@redhat.com>

	* gdk-pixbuf/pixops/timescale.c: quick fix for initializing
	arrays in benchmark.
This commit is contained in:
Owen Taylor
2000-01-05 23:57:02 +00:00
committed by Owen Taylor
parent 8f48c4b3cd
commit bba95de158
3 changed files with 10 additions and 2 deletions

View File

@@ -1,3 +1,8 @@
2000-01-05 Owen Taylor <otaylor@redhat.com>
* gdk-pixbuf/pixops/timescale.c: quick fix for initializing
arrays in benchmark.
2000-01-05 Jonathan Blandford <jrb@redhat.com>
* gdk-pixbuf/gdk-pixbuf-io.h: Change the order of the update func

View File

@@ -33,7 +33,6 @@ for a number of the most common special cases:
compositing from RGBA to RGBx
compositing against a color from RGBA and storing in a RGBx buffer
TODO
====

View File

@@ -41,7 +41,7 @@ init_array (double times[3][3][4])
for (i=0; i<3; i++)
for (j=0; j<3; j++)
for (k=0; j<4; k++)
for (k=0; k<4; k++)
times[i][j][k] = -1;
}
@@ -129,6 +129,10 @@ int main (int argc, char **argv)
printf ("Scaling from (%d, %d) to (%d, %d)\n\n", src_width, src_height, dest_width, dest_height);
init_array (scale_times);
init_array (composite_times);
init_array (composite_color_times);
for (src_index = 0; src_index < 3; src_index++)
for (dest_index = 0; dest_index < 3; dest_index++)
{