Changeset 2810
- Timestamp:
- 08/30/08 13:29:54 (5 years ago)
- Location:
- libpipi/trunk
- Files:
-
- 2 added
- 4 edited
-
examples/Makefile.am (modified) (2 diffs)
-
examples/colorstring.c (added)
-
pipi/Makefile.am (modified) (1 diff)
-
pipi/colorstring.c (added)
-
pipi/paint/line.c (modified) (1 diff)
-
pipi/pipi.h (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
libpipi/trunk/examples/Makefile.am
r2809 r2810 3 3 AM_CPPFLAGS = -I$(top_srcdir) -I$(top_srcdir)/pipi 4 4 5 bin_PROGRAMS = edd img2rubik sharpen floodfill line bezier histogram 5 bin_PROGRAMS = edd img2rubik sharpen floodfill line bezier histogram colorstring 6 6 7 7 edd_SOURCES = edd.c … … 25 25 histogram_SOURCES = histogram.c 26 26 histogram_LDADD = ../pipi/libpipi.la 27 28 colorstring_SOURCES = colorstring.c 29 colorstring_LDADD = ../pipi/libpipi.la -
libpipi/trunk/pipi/Makefile.am
r2809 r2810 22 22 codec.c \ 23 23 stock.c \ 24 colorstring.c \ 24 25 resize.c \ 25 26 dither.c \ -
libpipi/trunk/pipi/paint/line.c
r2806 r2810 73 73 s.x2 = x2; 74 74 s.y2 = y2; 75 75 76 76 77 /* No Transparency routine for u32 yet, fallback to float version */ -
libpipi/trunk/pipi/pipi.h
r2809 r2810 2 2 * libpipi Proper image processing implementation library 3 3 * Copyright (c) 2004-2008 Sam Hocevar <sam@zoy.org> 4 * 2008 Jean-Yves Lamoureux <jylam@lnxscene.org 4 5 * All Rights Reserved 5 6 * … … 22 23 #include <stdio.h> 23 24 #include <string.h> 25 #include <stdint.h> 24 26 25 27 #ifdef __cplusplus … … 79 81 union 80 82 { 83 struct pixel_float pixel_float; 81 84 struct pixel_u32 pixel_u32; 82 struct pixel_float pixel_float;83 85 }; 84 86 } … … 102 104 /* pipi_histogram_t: the histogram type */ 103 105 typedef struct pipi_histogram pipi_histogram_t; 106 107 extern pipi_pixel_t *pipi_get_color_from_string(const char* s); 108 104 109 105 110 extern pipi_context_t *pipi_create_context(void);
Note: See TracChangeset
for help on using the changeset viewer.
