Changeset 2299 for libcaca/trunk/examples
- Timestamp:
- Apr 19, 2008, 2:42:50 PM (14 years ago)
- Location:
- libcaca/trunk/examples
- Files:
-
- 24 edited
Legend:
- Unmodified
- Added
- Removed
-
libcaca/trunk/examples/Makefile.am
r2138 r2299 1 1 # $Id$ 2 2 3 AM_CPPFLAGS = -I$(top_srcdir) -I$(top_srcdir)/cucul -I$(top_srcdir)/caca -DDATADIR=\"$(pkgdatadir)\" 3 AM_CPPFLAGS = -I$(top_srcdir) -I$(top_srcdir)/cucul -I../cucul \ 4 -I$(top_srcdir)/caca -DDATADIR=\"$(pkgdatadir)\" 4 5 5 6 noinst_PROGRAMS = blit colors cucul demo demo0 dithering driver event export figfont font font2tga frames fullwidth gamma hsv input spritedit swallow text transform truecolor unicode import -
libcaca/trunk/examples/blit.c
r2101 r2299 14 14 15 15 #include "config.h" 16 #include "common.h" 16 17 17 #if !defined(__KERNEL__) 18 18 # include <stdio.h> -
libcaca/trunk/examples/colors.c
r2101 r2299 14 14 15 15 #include "config.h" 16 #include "common.h"17 16 18 17 #if !defined(__KERNEL__) -
libcaca/trunk/examples/cucul.c
r2101 r2299 14 14 15 15 #include "config.h" 16 #include "common.h"17 16 18 17 #if !defined(__KERNEL__) -
libcaca/trunk/examples/demo.c
r2101 r2299 14 14 15 15 #include "config.h" 16 #include "common.h" 16 17 17 #if !defined(__KERNEL__) 18 18 # include <math.h> … … 20 20 # include <stdio.h> 21 21 #endif 22 23 #include "cucul.h" 22 24 #include "caca.h" 23 25 -
libcaca/trunk/examples/dithering.c
r2101 r2299 14 14 15 15 #include "config.h" 16 #include "common.h"17 16 18 17 #if !defined(__KERNEL__) -
libcaca/trunk/examples/driver.c
r2139 r2299 14 14 15 15 #include "config.h" 16 #include "common.h"17 16 18 17 #if !defined(__KERNEL__) -
libcaca/trunk/examples/event.c
r2101 r2299 14 14 15 15 #include "config.h" 16 #include "common.h" 16 17 17 #if !defined(__KERNEL__) 18 18 # include <stdio.h> -
libcaca/trunk/examples/export.c
r2101 r2299 14 14 15 15 #include "config.h" 16 #include "common.h"17 16 18 17 #if !defined(__KERNEL__) 19 # if defined(HAVE_INTTYPES_H)20 # include <inttypes.h>21 # endif22 18 # include <stdio.h> 23 19 # include <stdlib.h> -
libcaca/trunk/examples/figfont.c
r2111 r2299 14 14 15 15 #include "config.h" 16 #include "common.h"17 16 18 17 #if !defined(__KERNEL__) -
libcaca/trunk/examples/font.c
r2101 r2299 14 14 15 15 #include "config.h" 16 #include "common.h"17 16 18 17 #if !defined(__KERNEL__) 19 # if defined(HAVE_INTTYPES_H)20 # include <inttypes.h>21 # endif22 23 18 # if defined(HAVE_ENDIAN_H) 24 19 # include <endian.h> -
libcaca/trunk/examples/font2tga.c
r2101 r2299 14 14 15 15 #include "config.h" 16 #include "common.h"17 16 18 17 #if !defined(__KERNEL__) 19 # if defined(HAVE_INTTYPES_H)20 # include <inttypes.h>21 # endif22 18 # include <stdio.h> 23 19 # include <stdlib.h> -
libcaca/trunk/examples/frames.c
r2101 r2299 14 14 15 15 #include "config.h" 16 #include "common.h" 16 17 17 #if !defined(__KERNEL__) 18 # if defined(HAVE_INTTYPES_H)19 # include <inttypes.h>20 # endif21 22 18 # include <stdio.h> 23 19 #endif 20 24 21 #include "cucul.h" 25 22 #include "caca.h" -
libcaca/trunk/examples/fullwidth.c
r2101 r2299 14 14 15 15 #include "config.h" 16 #include "common.h"17 16 18 17 #if !defined(__KERNEL__) 19 # if defined(HAVE_INTTYPES_H)20 # include <inttypes.h>21 # endif22 18 # include <stdio.h> 23 19 #endif -
libcaca/trunk/examples/gamma.c
r2101 r2299 14 14 15 15 #include "config.h" 16 #include "common.h"17 16 18 17 #if !defined(__KERNEL__) 19 # if defined(HAVE_INTTYPES_H)20 # include <inttypes.h>21 # endif22 18 # include <stdio.h> 23 19 # include <math.h> -
libcaca/trunk/examples/hsv.c
r2101 r2299 14 14 15 15 #include "config.h" 16 #include "common.h"17 16 18 17 #if !defined(__KERNEL__) 19 # if defined(HAVE_INTTYPES_H)20 # include <inttypes.h>21 # endif22 18 # include <stdio.h> 23 19 #endif -
libcaca/trunk/examples/import.c
r2101 r2299 14 14 15 15 #include "config.h" 16 #include "common.h"17 18 16 19 17 #if !defined(__KERNEL__) 20 # if defined(HAVE_INTTYPES_H)21 # include <inttypes.h>22 # endif23 18 # include <stdio.h> 24 19 # include <stdlib.h> 25 20 #endif 26 27 21 28 22 #include "cucul.h" -
libcaca/trunk/examples/input.c
r2101 r2299 14 14 15 15 #include "config.h" 16 #include "common.h"17 16 18 17 #if !defined(__KERNEL__) 19 # if defined(HAVE_INTTYPES_H)20 # include <inttypes.h>21 # endif22 18 # include <string.h> 23 19 # include <stdio.h> -
libcaca/trunk/examples/spritedit.c
r2147 r2299 14 14 15 15 #include "config.h" 16 #include "common.h"17 16 18 17 #if !defined(__KERNEL__) -
libcaca/trunk/examples/swallow.c
r2101 r2299 14 14 15 15 #include "config.h" 16 #include "common.h" 16 17 17 #if !defined(__KERNEL__) 18 18 # include <stdio.h> -
libcaca/trunk/examples/text.c
r2101 r2299 14 14 15 15 #include "config.h" 16 #include "common.h" 16 17 17 #if !defined(__KERNEL__) 18 # if defined(HAVE_INTTYPES_H)19 # include <inttypes.h>20 # endif21 18 # include <stdio.h> 22 19 # include <string.h> 23 20 # include <stdlib.h> 24 21 #endif 22 25 23 #include "cucul.h" 26 24 -
libcaca/trunk/examples/transform.c
r2101 r2299 14 14 15 15 #include "config.h" 16 #include "common.h" 16 17 17 #if !defined(__KERNEL__) 18 # if defined(HAVE_INTTYPES_H)19 # include <inttypes.h>20 # endif21 18 # include <stdio.h> 22 19 # include <string.h> -
libcaca/trunk/examples/truecolor.c
r2101 r2299 14 14 15 15 #include "config.h" 16 #include "common.h"17 16 18 17 #if !defined(__KERNEL__) 19 # if defined(HAVE_INTTYPES_H)20 # include <inttypes.h>21 # endif22 18 # include <stdio.h> 23 19 #endif -
libcaca/trunk/examples/unicode.c
r2101 r2299 14 14 15 15 #include "config.h" 16 #include "common.h"17 16 18 17 #if !defined(__KERNEL__) 19 # if defined(HAVE_INTTYPES_H)20 # include <inttypes.h>21 # endif22 18 # include <stdio.h> 23 19 #endif
Note: See TracChangeset
for help on using the changeset viewer.