- Timestamp:
- Oct 8, 2008, 2:14:57 AM (13 years ago)
- Location:
- libpipi/trunk
- Files:
-
- 3 added
- 1 deleted
- 58 edited
Legend:
- Unmodified
- Added
- Removed
-
libpipi/trunk/Makefile.am
r2899 r2902 4 4 DIST_SUBDIRS = $(SUBDIRS) win32 5 5 6 EXTRA_DIST = bootstrap build-win32 common.hNOTES6 EXTRA_DIST = bootstrap build-win32 NOTES 7 7 AUTOMAKE_OPTIONS = dist-bzip2 8 8 -
libpipi/trunk/configure.ac
r2899 r2902 67 67 AM_CONDITIONAL(NEED_GETOPT_LONG, test "$ac_cv_have_getopt_long" = "no") 68 68 AC_SUBST(GETOPT_LIBS) 69 70 # How to get the C99 types. See pipi/pipi_types.h.in for details about 71 # the PIPI_TYPES variable 72 if test "${ac_cv_my_have_vga}" = "yes"; then 73 PIPI_TYPES=0 74 else 75 AC_CHECK_HEADERS(stdint.h, 76 [PIPI_TYPES=1], 77 [AC_CHECK_HEADERS(inttypes.h, 78 [PIPI_TYPES=2], 79 [AC_CHECK_HEADERS(windows.h, 80 [PIPI_TYPES=3], 81 [PIPI_TYPES=0])])]) 82 fi 83 AC_SUBST(PIPI_TYPES) 69 84 70 85 # Optimizations … … 175 190 ]) 176 191 AC_CONFIG_FILES([ 192 pipi/pipi_types.h 177 193 pipi/pipi.pc 178 194 pipi-sharp/pipi-sharp.pc -
libpipi/trunk/examples/bezier.c
r2789 r2902 1 1 #include "config.h" 2 #include "common.h"3 2 4 3 #include <stdio.h> -
libpipi/trunk/examples/edd.c
r2759 r2902 24 24 25 25 #include "config.h" 26 #include "common.h"27 26 28 27 #include <stdio.h> -
libpipi/trunk/examples/floodfill.c
r2678 r2902 1 1 #include "config.h" 2 #include "common.h"3 2 4 3 #include <stdio.h> -
libpipi/trunk/examples/histogram.c
r2809 r2902 1 1 #include "config.h" 2 #include "common.h"3 2 4 3 #include <stdio.h> -
libpipi/trunk/examples/img2rubik.c
r2738 r2902 1 1 #include "config.h" 2 #include "common.h"3 2 4 3 #include <stdio.h> -
libpipi/trunk/examples/line.c
r2796 r2902 1 1 #include "config.h" 2 #include "common.h"3 2 4 3 #include <stdio.h> -
libpipi/trunk/examples/sharpen.c
r2662 r2902 1 1 #include "config.h" 2 #include "common.h"3 2 4 3 #include <stdio.h> -
libpipi/trunk/genethumb/genethumb.c
r2601 r2902 1 1 #include "config.h" 2 #include "common.h"3 2 4 3 #if !defined HAVE_GETOPT_LONG -
libpipi/trunk/pipi
- Property svn:ignore
-
old new 5 5 *.a 6 6 pipi.pc 7 pipi_types.h
-
- Property svn:ignore
-
libpipi/trunk/pipi/Makefile.am
r2897 r2902 1 1 # $Id$ 2 2 3 EXTRA_DIST = pipi .pc.in3 EXTRA_DIST = pipi_types.h.in pipi.pc.in 4 4 DISTCLEANFILES = pipi.pc 5 5 … … 9 9 pkgconfigdir = $(libdir)/pkgconfig 10 10 11 include_HEADERS = pipi.h 11 include_HEADERS = pipi.h pipi_types.h 12 12 13 13 # The main library … … 16 16 pipi.c \ 17 17 pipi.h \ 18 pipi_types.h \ 18 19 pipi_internals.h \ 20 pipi_stubs.h \ 19 21 pipi_template.h \ 20 22 context.c \ -
libpipi/trunk/pipi/accessors.c
r2844 r2902 19 19 20 20 #include "config.h" 21 #include "common.h"22 21 23 22 #include <stdio.h> -
libpipi/trunk/pipi/codec.c
r2897 r2902 18 18 19 19 #include "config.h" 20 #include "common.h"21 20 22 21 #include <stdio.h> -
libpipi/trunk/pipi/codec/coreimage.h
r2897 r2902 21 21 #ifdef USE_COCOA 22 22 23 #include "common.h"24 25 23 #include <stdio.h> 26 24 #include <stdlib.h> -
libpipi/trunk/pipi/codec/gdi.c
r2844 r2902 18 18 19 19 #include "config.h" 20 #include "common.h"21 20 22 21 #include <stdio.h> -
libpipi/trunk/pipi/codec/imlib.c
r2844 r2902 18 18 19 19 #include "config.h" 20 #include "common.h"21 20 22 21 #include <stdio.h> -
libpipi/trunk/pipi/codec/opencv.c
r2844 r2902 18 18 19 19 #include "config.h" 20 #include "common.h"21 20 22 21 #include <stdio.h> -
libpipi/trunk/pipi/codec/oric.c
r2862 r2902 18 18 19 19 #include "config.h" 20 #include "common.h"21 20 22 21 #include <stdio.h> -
libpipi/trunk/pipi/codec/sdl.c
r2844 r2902 18 18 19 19 #include "config.h" 20 #include "common.h"21 20 22 21 #include <stdio.h> -
libpipi/trunk/pipi/colorstring.c
r2844 r2902 1 /*2 * libpipi Pathetic image processing interface library3 * Copyright (c) 2004-2008 Sam Hocevar <sam@zoy.org>4 * 2008 Jean-Yves Lamoureux <jylam@lnxscene.org5 * All Rights Reserved6 *7 * $Id$8 *9 * This library is free software. It comes without any warranty, to10 * the extent permitted by applicable law. You can redistribute it11 * and/or modify it under the terms of the Do What The Fuck You Want12 * To Public License, Version 2, as published by Sam Hocevar. See13 * http://sam.zoy.org/wtfpl/COPYING for more details.14 */15 16 /*17 * color.c: color parsing functions18 */19 20 #include "config.h"21 #include "common.h"22 23 1 /* 24 2 * libpipi Pathetic image processing interface library … … 41 19 42 20 #include "config.h" 43 #include "common.h"44 21 45 22 #include <stdio.h> 46 23 #include <stdlib.h> 47 24 #include <stdarg.h> 48 #include <stdint.h>49 25 #include <string.h> 50 26 -
libpipi/trunk/pipi/combine/mean.c
r2844 r2902 18 18 19 19 #include "config.h" 20 #include "common.h"21 20 22 21 #include "pipi.h" -
libpipi/trunk/pipi/combine/minmax.c
r2844 r2902 18 18 19 19 #include "config.h" 20 #include "common.h"21 20 22 21 #include "pipi.h" -
libpipi/trunk/pipi/combine/mulscreen.c
r2844 r2902 18 18 19 19 #include "config.h" 20 #include "common.h"21 20 22 21 #include "pipi.h" -
libpipi/trunk/pipi/combine/rgb.c
r2844 r2902 18 18 19 19 #include "config.h" 20 #include "common.h"21 20 22 21 #include "pipi.h" -
libpipi/trunk/pipi/combine/subadd.c
r2844 r2902 18 18 19 19 #include "config.h" 20 #include "common.h"21 20 22 21 #include <math.h> -
libpipi/trunk/pipi/context.c
r2857 r2902 18 18 19 19 #include "config.h" 20 #include "common.h"21 20 22 21 #include <stdio.h> -
libpipi/trunk/pipi/dither.c
r2844 r2902 18 18 19 19 #include "config.h" 20 #include "common.h"21 20 22 21 #include <stdio.h> -
libpipi/trunk/pipi/dither/dbs.c
r2844 r2902 18 18 19 19 #include "config.h" 20 #include "common.h"21 20 22 21 #include <string.h> -
libpipi/trunk/pipi/dither/ediff.c
r2844 r2902 18 18 19 19 #include "config.h" 20 #include "common.h"21 20 22 21 #include "pipi.h" -
libpipi/trunk/pipi/dither/ordered.c
r2844 r2902 18 18 19 19 #include "config.h" 20 #include "common.h"21 20 22 21 #include <stdlib.h> -
libpipi/trunk/pipi/dither/ostromoukhov.c
r2844 r2902 26 26 27 27 #include "config.h" 28 #include "common.h"29 28 30 29 #include "pipi.h" -
libpipi/trunk/pipi/dither/random.c
r2844 r2902 18 18 19 19 #include "config.h" 20 #include "common.h"21 20 22 21 #include "pipi.h" -
libpipi/trunk/pipi/filter/autocontrast.c
r2844 r2902 20 20 21 21 #include "config.h" 22 #include "common.h"23 22 24 23 #include <stdlib.h> -
libpipi/trunk/pipi/filter/blur.c
r2844 r2902 18 18 19 19 #include "config.h" 20 #include "common.h"21 20 22 21 #include <stdlib.h> -
libpipi/trunk/pipi/filter/color.c
r2844 r2902 18 18 19 19 #include "config.h" 20 #include "common.h"21 20 22 21 #include <stdlib.h> -
libpipi/trunk/pipi/filter/convolution.c
r2844 r2902 18 18 19 19 #include "config.h" 20 #include "common.h"21 20 22 21 #include <stdlib.h> -
libpipi/trunk/pipi/filter/dilate.c
r2844 r2902 18 18 19 19 #include "config.h" 20 #include "common.h"21 20 22 21 #include <stdlib.h> -
libpipi/trunk/pipi/filter/median.c
r2844 r2902 18 18 19 19 #include "config.h" 20 #include "common.h"21 20 22 21 #include <stdlib.h> -
libpipi/trunk/pipi/filter/transform.c
r2844 r2902 18 18 19 19 #include "config.h" 20 #include "common.h"21 20 22 21 #include <stdlib.h> -
libpipi/trunk/pipi/histogram/histogram.c
r2844 r2902 19 19 20 20 #include "config.h" 21 #include "common.h"22 21 23 22 #include <stdio.h> -
libpipi/trunk/pipi/measure.c
r2844 r2902 18 18 19 19 #include "config.h" 20 #include "common.h"21 20 22 21 #include <math.h> -
libpipi/trunk/pipi/paint/bezier.c
r2844 r2902 19 19 20 20 #include "config.h" 21 #include "common.h"22 21 23 22 #include <stdio.h> -
libpipi/trunk/pipi/paint/floodfill.c
r2844 r2902 19 19 20 20 #include "config.h" 21 #include "common.h"22 21 23 22 #include <stdlib.h> -
libpipi/trunk/pipi/paint/line.c
r2844 r2902 19 19 20 20 #include "config.h" 21 #include "common.h"22 21 23 22 #include <stdio.h> -
libpipi/trunk/pipi/paint/tile.c
r2844 r2902 18 18 19 19 #include "config.h" 20 #include "common.h"21 20 22 #include <string s.h>21 #include <string.h> 23 22 24 23 #include "pipi.h" -
libpipi/trunk/pipi/pipi.c
r2865 r2902 18 18 19 19 #include "config.h" 20 #include "common.h"21 20 22 21 #include <stdio.h> -
libpipi/trunk/pipi/pipi.h
r2865 r2902 21 21 #define __PIPI_H__ 22 22 23 #include <stdio.h> 24 #include <string.h> 25 #include <stdint.h> 23 #include <pipi_types.h> 24 25 #undef __extern 26 #if defined(_DOXYGEN_SKIP_ME) 27 #elif defined(_WIN32) && defined(__LIBPIPI__) 28 # define __extern extern __declspec(dllexport) 29 #else 30 # define __extern extern 31 #endif 26 32 27 33 #ifdef __cplusplus … … 113 119 pipi_command_t; 114 120 115 extern pipi_pixel_t *pipi_get_color_from_string(const char* s);121 __extern pipi_pixel_t *pipi_get_color_from_string(const char* s); 116 122 117 123 char const * pipi_get_version(void); 118 124 119 extern pipi_context_t *pipi_create_context(void);120 extern void pipi_destroy_context(pipi_context_t *);121 extern pipi_command_t const *pipi_get_command_list(void);122 extern int pipi_command(pipi_context_t *, char const *, ...);123 124 extern pipi_image_t *pipi_load(char const *);125 extern pipi_image_t *pipi_load_stock(char const *);126 extern pipi_image_t *pipi_new(int, int);127 extern pipi_image_t *pipi_copy(pipi_image_t *);128 extern void pipi_free(pipi_image_t *);129 extern int pipi_save(pipi_image_t *, const char *);130 131 extern void pipi_set_gamma(double);132 extern pipi_pixels_t *pipi_getpixels(pipi_image_t *, pipi_format_t);133 extern int pipi_get_image_width(pipi_image_t *img);134 extern int pipi_get_image_height(pipi_image_t *img);135 extern int pipi_get_image_pitch(pipi_image_t *img);136 extern int pipi_get_image_last_modified(pipi_image_t *img);137 extern const char* pipi_get_format_name(int format);138 139 140 extern double pipi_measure_msd(pipi_image_t *, pipi_image_t *);141 extern double pipi_measure_rmsd(pipi_image_t *, pipi_image_t *);142 143 extern pipi_image_t *pipi_resize(pipi_image_t *, int, int);144 145 extern pipi_image_t *pipi_render_random(int, int);146 extern pipi_image_t *pipi_render_bayer(int, int);147 extern pipi_image_t *pipi_render_halftone(int, int);148 149 extern pipi_image_t *pipi_rgb(pipi_image_t *, pipi_image_t *, pipi_image_t *);150 extern pipi_image_t *pipi_red(pipi_image_t *);151 extern pipi_image_t *pipi_green(pipi_image_t *);152 extern pipi_image_t *pipi_blue(pipi_image_t *);153 extern pipi_image_t *pipi_mean(pipi_image_t *, pipi_image_t *);154 extern pipi_image_t *pipi_min(pipi_image_t *, pipi_image_t *);155 extern pipi_image_t *pipi_max(pipi_image_t *, pipi_image_t *);156 extern pipi_image_t *pipi_add(pipi_image_t *, pipi_image_t *);157 extern pipi_image_t *pipi_sub(pipi_image_t *, pipi_image_t *);158 extern pipi_image_t *pipi_difference(pipi_image_t *, pipi_image_t *);159 extern pipi_image_t *pipi_multiply(pipi_image_t *, pipi_image_t *);160 extern pipi_image_t *pipi_divide(pipi_image_t *, pipi_image_t *);161 extern pipi_image_t *pipi_screen(pipi_image_t *, pipi_image_t *);162 extern pipi_image_t *pipi_overlay(pipi_image_t *, pipi_image_t *);163 164 extern pipi_image_t *pipi_convolution(pipi_image_t *, int, int, double[]);165 extern pipi_image_t *pipi_gaussian_blur(pipi_image_t *, float);166 extern pipi_image_t *pipi_gaussian_blur_ext(pipi_image_t *,125 __extern pipi_context_t *pipi_create_context(void); 126 __extern void pipi_destroy_context(pipi_context_t *); 127 __extern pipi_command_t const *pipi_get_command_list(void); 128 __extern int pipi_command(pipi_context_t *, char const *, ...); 129 130 __extern pipi_image_t *pipi_load(char const *); 131 __extern pipi_image_t *pipi_load_stock(char const *); 132 __extern pipi_image_t *pipi_new(int, int); 133 __extern pipi_image_t *pipi_copy(pipi_image_t *); 134 __extern void pipi_free(pipi_image_t *); 135 __extern int pipi_save(pipi_image_t *, const char *); 136 137 __extern void pipi_set_gamma(double); 138 __extern pipi_pixels_t *pipi_getpixels(pipi_image_t *, pipi_format_t); 139 __extern int pipi_get_image_width(pipi_image_t *img); 140 __extern int pipi_get_image_height(pipi_image_t *img); 141 __extern int pipi_get_image_pitch(pipi_image_t *img); 142 __extern int pipi_get_image_last_modified(pipi_image_t *img); 143 __extern const char* pipi_get_format_name(int format); 144 145 146 __extern double pipi_measure_msd(pipi_image_t *, pipi_image_t *); 147 __extern double pipi_measure_rmsd(pipi_image_t *, pipi_image_t *); 148 149 __extern pipi_image_t *pipi_resize(pipi_image_t *, int, int); 150 151 __extern pipi_image_t *pipi_render_random(int, int); 152 __extern pipi_image_t *pipi_render_bayer(int, int); 153 __extern pipi_image_t *pipi_render_halftone(int, int); 154 155 __extern pipi_image_t *pipi_rgb(pipi_image_t *, pipi_image_t *, pipi_image_t *); 156 __extern pipi_image_t *pipi_red(pipi_image_t *); 157 __extern pipi_image_t *pipi_green(pipi_image_t *); 158 __extern pipi_image_t *pipi_blue(pipi_image_t *); 159 __extern pipi_image_t *pipi_mean(pipi_image_t *, pipi_image_t *); 160 __extern pipi_image_t *pipi_min(pipi_image_t *, pipi_image_t *); 161 __extern pipi_image_t *pipi_max(pipi_image_t *, pipi_image_t *); 162 __extern pipi_image_t *pipi_add(pipi_image_t *, pipi_image_t *); 163 __extern pipi_image_t *pipi_sub(pipi_image_t *, pipi_image_t *); 164 __extern pipi_image_t *pipi_difference(pipi_image_t *, pipi_image_t *); 165 __extern pipi_image_t *pipi_multiply(pipi_image_t *, pipi_image_t *); 166 __extern pipi_image_t *pipi_divide(pipi_image_t *, pipi_image_t *); 167 __extern pipi_image_t *pipi_screen(pipi_image_t *, pipi_image_t *); 168 __extern pipi_image_t *pipi_overlay(pipi_image_t *, pipi_image_t *); 169 170 __extern pipi_image_t *pipi_convolution(pipi_image_t *, int, int, double[]); 171 __extern pipi_image_t *pipi_gaussian_blur(pipi_image_t *, float); 172 __extern pipi_image_t *pipi_gaussian_blur_ext(pipi_image_t *, 167 173 float, float, float, float, float); 168 extern pipi_image_t *pipi_box_blur(pipi_image_t *, int);169 extern pipi_image_t *pipi_box_blur_ext(pipi_image_t *, int, int);170 extern pipi_image_t *pipi_brightness(pipi_image_t *, double);171 extern pipi_image_t *pipi_contrast(pipi_image_t *, double);172 extern pipi_image_t *pipi_autocontrast(pipi_image_t *);173 extern pipi_image_t *pipi_invert(pipi_image_t *);174 extern pipi_image_t *pipi_threshold(pipi_image_t *, double);175 extern pipi_image_t *pipi_hflip(pipi_image_t *);176 extern pipi_image_t *pipi_vflip(pipi_image_t *);177 extern pipi_image_t *pipi_rotate90(pipi_image_t *);178 extern pipi_image_t *pipi_rotate180(pipi_image_t *);179 extern pipi_image_t *pipi_rotate270(pipi_image_t *);180 extern pipi_image_t *pipi_median(pipi_image_t *, int);181 extern pipi_image_t *pipi_median_ext(pipi_image_t *, int, int);182 extern pipi_image_t *pipi_dilate(pipi_image_t *);183 extern pipi_image_t *pipi_erode(pipi_image_t *);184 185 extern pipi_image_t *pipi_order(pipi_image_t *);186 187 extern pipi_image_t *pipi_tile(pipi_image_t *, int, int);188 extern int pipi_flood_fill(pipi_image_t *,174 __extern pipi_image_t *pipi_box_blur(pipi_image_t *, int); 175 __extern pipi_image_t *pipi_box_blur_ext(pipi_image_t *, int, int); 176 __extern pipi_image_t *pipi_brightness(pipi_image_t *, double); 177 __extern pipi_image_t *pipi_contrast(pipi_image_t *, double); 178 __extern pipi_image_t *pipi_autocontrast(pipi_image_t *); 179 __extern pipi_image_t *pipi_invert(pipi_image_t *); 180 __extern pipi_image_t *pipi_threshold(pipi_image_t *, double); 181 __extern pipi_image_t *pipi_hflip(pipi_image_t *); 182 __extern pipi_image_t *pipi_vflip(pipi_image_t *); 183 __extern pipi_image_t *pipi_rotate90(pipi_image_t *); 184 __extern pipi_image_t *pipi_rotate180(pipi_image_t *); 185 __extern pipi_image_t *pipi_rotate270(pipi_image_t *); 186 __extern pipi_image_t *pipi_median(pipi_image_t *, int); 187 __extern pipi_image_t *pipi_median_ext(pipi_image_t *, int, int); 188 __extern pipi_image_t *pipi_dilate(pipi_image_t *); 189 __extern pipi_image_t *pipi_erode(pipi_image_t *); 190 191 __extern pipi_image_t *pipi_order(pipi_image_t *); 192 193 __extern pipi_image_t *pipi_tile(pipi_image_t *, int, int); 194 __extern int pipi_flood_fill(pipi_image_t *, 189 195 int, int, float, float, float, float); 190 extern int pipi_draw_line(pipi_image_t *, int, int, int, int, uint32_t, int);191 extern int pipi_draw_polyline(pipi_image_t *, int const[], int const[],196 __extern int pipi_draw_line(pipi_image_t *, int, int, int, int, uint32_t, int); 197 __extern int pipi_draw_polyline(pipi_image_t *, int const[], int const[], 192 198 int , uint32_t, int); 193 extern int pipi_draw_bezier4(pipi_image_t *,int, int, int, int, int, int, int, int, uint32_t, int, int);194 extern pipi_image_t *pipi_reduce(pipi_image_t *, int, double const *);195 196 extern pipi_image_t *pipi_dither_ediff(pipi_image_t *, pipi_image_t *,199 __extern int pipi_draw_bezier4(pipi_image_t *,int, int, int, int, int, int, int, int, uint32_t, int, int); 200 __extern pipi_image_t *pipi_reduce(pipi_image_t *, int, double const *); 201 202 __extern pipi_image_t *pipi_dither_ediff(pipi_image_t *, pipi_image_t *, 197 203 pipi_scan_t); 198 extern pipi_image_t *pipi_dither_ordered(pipi_image_t *, pipi_image_t *);199 extern pipi_image_t *pipi_dither_ordered_ext(pipi_image_t *, pipi_image_t *,204 __extern pipi_image_t *pipi_dither_ordered(pipi_image_t *, pipi_image_t *); 205 __extern pipi_image_t *pipi_dither_ordered_ext(pipi_image_t *, pipi_image_t *, 200 206 double, double); 201 extern pipi_image_t *pipi_dither_halftone(pipi_image_t *, double, double); 202 extern pipi_image_t *pipi_dither_random(pipi_image_t *); 203 extern pipi_image_t *pipi_dither_ostromoukhov(pipi_image_t *, pipi_scan_t); 204 extern pipi_image_t *pipi_dither_dbs(pipi_image_t *); 205 extern void pipi_dither_24to16(pipi_image_t *); 206 207 extern pipi_histogram_t* pipi_new_histogram(void); 208 extern int pipi_get_image_histogram(pipi_image_t *, pipi_histogram_t *, int); 209 extern int pipi_free_histogram(pipi_histogram_t*); 210 extern int pipi_render_histogram(pipi_image_t *, pipi_histogram_t*, int); 211 207 __extern pipi_image_t *pipi_dither_halftone(pipi_image_t *, double, double); 208 __extern pipi_image_t *pipi_dither_random(pipi_image_t *); 209 __extern pipi_image_t *pipi_dither_ostromoukhov(pipi_image_t *, pipi_scan_t); 210 __extern pipi_image_t *pipi_dither_dbs(pipi_image_t *); 211 __extern void pipi_dither_24to16(pipi_image_t *); 212 213 __extern pipi_histogram_t* pipi_new_histogram(void); 214 __extern int pipi_get_image_histogram(pipi_image_t *, pipi_histogram_t *, int); 215 __extern int pipi_free_histogram(pipi_histogram_t*); 216 __extern int pipi_render_histogram(pipi_image_t *, pipi_histogram_t*, int); 212 217 213 218 #ifdef __cplusplus -
libpipi/trunk/pipi/pipi_internals.h
r2897 r2902 19 19 #ifndef __PIPI_INTERNALS_H__ 20 20 #define __PIPI_INTERNALS_H__ 21 22 #include "pipi_stubs.h" 21 23 22 24 #define SET_FLAG_GRAY 0x00000001 -
libpipi/trunk/pipi/pixels.c
r2846 r2902 18 18 19 19 #include "config.h" 20 #include "common.h"21 20 22 21 #include <stdio.h> -
libpipi/trunk/pipi/quantize/reduce.c
r2844 r2902 18 18 19 19 #include "config.h" 20 #include "common.h"21 20 22 21 #include <stdio.h> -
libpipi/trunk/pipi/render/noise.c
r2844 r2902 18 18 19 19 #include "config.h" 20 #include "common.h"21 20 22 21 #include <stdio.h> -
libpipi/trunk/pipi/render/screen.c
r2844 r2902 18 18 19 19 #include "config.h" 20 #include "common.h"21 20 22 21 #include <stdio.h> -
libpipi/trunk/pipi/resize.c
r2844 r2902 18 18 19 19 #include "config.h" 20 #include "common.h"21 20 22 21 #include <stdlib.h> -
libpipi/trunk/pipi/stock.c
r2844 r2902 18 18 19 19 #include "config.h" 20 #include "common.h"21 20 22 21 #include <stdio.h> -
libpipi/trunk/src/pipi.c
r2857 r2902 1 1 #include "config.h" 2 #include "common.h"3 2 4 3 #include <stdio.h> -
libpipi/trunk/test/u8tof32tou8.c
r2844 r2902 19 19 20 20 #include "config.h" 21 #include "common.h"22 21 23 22 #include <stdio.h> -
libpipi/trunk/win32/Makefile.am
r2899 r2902 1 1 # $Id$ 2 2 3 EXTRA_DIST = config.h 3 EXTRA_DIST = config.h pipi_types.h 4 4
Note: See TracChangeset
for help on using the changeset viewer.