Enlightenment CVS committal Author : doursse Project : e17 Module : apps/expedite
Dir : e17/apps/expedite/src/bin Modified Files: Makefile.am main.c main.h Added Files: engine_software_ddraw.c engine_software_ddraw.h Log Message: Add directdraw test. configure script displays the available engines =================================================================== RCS file: /cvs/e/e17/apps/expedite/src/bin/Makefile.am,v retrieving revision 1.2 retrieving revision 1.3 diff -u -3 -r1.2 -r1.3 --- Makefile.am 29 Apr 2007 15:46:06 -0000 1.2 +++ Makefile.am 27 May 2007 11:10:49 -0000 1.3 @@ -15,6 +15,7 @@ engine_gl_x11.c engine_gl_x11.h \ engine_xrender_x11.c engine_xrender_x11.h \ engine_software_16_x11.c engine_software_16_x11.h \ +engine_software_ddraw.c engine_software_ddraw.h \ ui.c ui.h \ about.c about.h \ tests.h \ @@ -43,4 +44,4 @@ rect_blend_few.c \ rect_solid_few.c -expedite_LDFLAGS = @EVAS_LIBS@ @x_libs@ -lm +expedite_LDFLAGS = @EVAS_LIBS@ @x_libs@ @ddraw_libs@ -lm =================================================================== RCS file: /cvs/e/e17/apps/expedite/src/bin/main.c,v retrieving revision 1.3 retrieving revision 1.4 diff -u -3 -r1.3 -r1.4 --- main.c 29 Apr 2007 15:46:06 -0000 1.3 +++ main.c 27 May 2007 11:10:50 -0000 1.4 @@ -1099,6 +1099,8 @@ loop_func = engine_xrender_x11_loop; if (engine_software_16_x11_args(argc, argv)) loop_func = engine_software_16_x11_loop; + if (engine_software_ddraw_args(argc, argv)) + loop_func = engine_software_ddraw_loop; if (!loop_func) { fprintf(stderr, @@ -1108,7 +1110,7 @@ " -e ENGINE\n" "\n" "Where ENGINE can be one of:\n" - " x11 xr gl x11-16\n" + " x11 xr gl x11-16 ddraw\n" ); exit(-1); } =================================================================== RCS file: /cvs/e/e17/apps/expedite/src/bin/main.h,v retrieving revision 1.2 retrieving revision 1.3 diff -u -3 -r1.2 -r1.3 --- main.h 29 Apr 2007 15:46:06 -0000 1.2 +++ main.h 27 May 2007 11:10:50 -0000 1.3 @@ -14,6 +14,7 @@ #include "engine_gl_x11.h" #include "engine_xrender_x11.h" #include "engine_software_16_x11.h" +#include "engine_software_ddraw.h" #include "ui.h" #include "about.h" ------------------------------------------------------------------------- This SF.net email is sponsored by DB2 Express Download DB2 Express C - the FREE version of DB2 express and take control of your XML. No limits. Just data. Click to get it now. http://sourceforge.net/powerbar/db2/ _______________________________________________ enlightenment-cvs mailing list enlightenment-cvs@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs