stuff
This commit is contained in:
parent
060b4d4a3d
commit
94b8f79a22
@ -52,6 +52,7 @@
|
||||
#include <math.h>
|
||||
|
||||
#include <vips/vips.h>
|
||||
#include <vips/thread.h>
|
||||
#include <vips/internal.h>
|
||||
|
||||
#ifdef WITH_DMALLOC
|
||||
|
@ -86,6 +86,8 @@ line_shrink_gen( REGION *or, void *seq, void *a, void *b )
|
||||
int x, y;
|
||||
int z, k;
|
||||
|
||||
printf( "point_shrink_gen\n" );
|
||||
|
||||
/* Loop down the region.
|
||||
*/
|
||||
for( y = to; y < bo; y++ ) {
|
||||
@ -150,6 +152,8 @@ point_shrink_gen( REGION *or, void *seq, void *a, void *b )
|
||||
int x, y;
|
||||
int k;
|
||||
|
||||
printf( "point_shrink_gen\n" );
|
||||
|
||||
/* Loop down the region.
|
||||
*/
|
||||
for( y = to; y < bo; y++ ) {
|
||||
|
@ -14,7 +14,7 @@
|
||||
* done/undone
|
||||
* 5/3/10
|
||||
* - move invalid stuff to region
|
||||
* - move link maintenace to im_demand_hint
|
||||
* - move link maintenance to im_demand_hint
|
||||
*/
|
||||
|
||||
/*
|
||||
@ -431,7 +431,8 @@ im_buffer_unref_ref( im_buffer_t *old_buffer, IMAGE *im, Rect *area )
|
||||
|
||||
/* Is the current buffer OK?
|
||||
*/
|
||||
if( im_rect_includesrect( &buffer->area, area ) )
|
||||
if( old_buffer &&
|
||||
im_rect_includesrect( &old_buffer->area, area ) )
|
||||
return( old_buffer );
|
||||
|
||||
/* Does the new area already have a buffer?
|
||||
|
@ -46,6 +46,7 @@
|
||||
|
||||
#include <vips/vips.h>
|
||||
#include <vips/internal.h>
|
||||
#include <vips/thread.h>
|
||||
|
||||
#ifdef WITH_DMALLOC
|
||||
#include <dmalloc.h>
|
||||
|
@ -104,6 +104,7 @@
|
||||
#include <assert.h>
|
||||
|
||||
#include <vips/vips.h>
|
||||
#include <vips/thread.h>
|
||||
#include <vips/internal.h>
|
||||
#include <vips/debug.h>
|
||||
|
||||
|
@ -12,6 +12,8 @@
|
||||
* - build parent/child links as well
|
||||
* 8/10/09
|
||||
* - gtkdoc comments
|
||||
* 5/3/10
|
||||
* - move link maintenance to im_demand_hint
|
||||
*/
|
||||
|
||||
/*
|
||||
|
@ -69,6 +69,7 @@
|
||||
#include <stdlib.h>
|
||||
|
||||
#include <vips/vips.h>
|
||||
#include <vips/thread.h>
|
||||
#include <vips/internal.h>
|
||||
#include <vips/debug.h>
|
||||
|
||||
|
@ -65,6 +65,7 @@
|
||||
#include <string.h>
|
||||
|
||||
#include <vips/vips.h>
|
||||
#include <vips/thread.h>
|
||||
#include <vips/debug.h>
|
||||
#include <vips/internal.h>
|
||||
|
||||
|
@ -78,8 +78,8 @@
|
||||
#include <string.h>
|
||||
|
||||
#include <vips/vips.h>
|
||||
#include <vips/debug.h>
|
||||
#include <vips/thread.h>
|
||||
#include <vips/debug.h>
|
||||
#include <vips/internal.h>
|
||||
|
||||
#ifdef WITH_DMALLOC
|
||||
|
@ -37,6 +37,8 @@
|
||||
* - added im_region_print()
|
||||
* 7/10/09
|
||||
* - gtkdoc comments
|
||||
* 5/3/10
|
||||
* - move invalid stuff to region
|
||||
*/
|
||||
|
||||
/*
|
||||
|
Loading…
x
Reference in New Issue
Block a user