Enlightenment CVS committal

Author  : raster
Project : e17
Module  : apps/expedite

Dir     : e17/apps/expedite/src/bin


Modified Files:
        Makefile.am main.c main.h 
Added Files:
        engine_software_sdl.c engine_software_sdl.h 


Log Message:


sdl engine support in expedite

===================================================================
RCS file: /cvs/e/e17/apps/expedite/src/bin/Makefile.am,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -3 -r1.5 -r1.6
--- Makefile.am 17 Jun 2007 13:44:44 -0000      1.5
+++ Makefile.am 16 Jul 2007 07:27:43 -0000      1.6
@@ -2,7 +2,7 @@
 INCLUDES = -I$(includedir) \
           -I$(top_srcdir) \
           -I$(top_srcdir)/src/bin \
-          @EVAS_CFLAGS@ @x_cflags@ \
+          @EVAS_CFLAGS@ @x_cflags@ @sdl_cflags@ \
           -DPACKAGE_BIN_DIR=\"@[EMAIL PROTECTED]" \
           -DPACKAGE_LIB_DIR=\"@[EMAIL PROTECTED]" \
           -DPACKAGE_DATA_DIR=\"@[EMAIL PROTECTED]"
@@ -16,6 +16,7 @@
 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 \
+engine_software_sdl.c engine_software_sdl.h \
 ui.c ui.h \
 about.c about.h \
 tests.h \
@@ -58,4 +59,4 @@
 image_blend_occlude3_very_many.c \
 poly_blend.c
 
-expedite_LDFLAGS = @EVAS_LIBS@  @x_libs@ @ddraw_libs@ -lm
+expedite_LDFLAGS = @EVAS_LIBS@ @sdl_libs@ @x_libs@ @ddraw_libs@ -lm
===================================================================
RCS file: /cvs/e/e17/apps/expedite/src/bin/main.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -3 -r1.4 -r1.5
--- main.c      27 May 2007 11:10:50 -0000      1.4
+++ main.c      16 Jul 2007 07:27:43 -0000      1.5
@@ -1090,7 +1090,6 @@
 _engine_args(int argc, char **argv)
 {
    /* FIXME: parse args for geometry, engine etc. */
-   
    if (engine_software_x11_args(argc, argv))
      loop_func = engine_software_x11_loop;
    if (engine_gl_x11_args(argc, argv))
@@ -1101,6 +1100,8 @@
      loop_func = engine_software_16_x11_loop;
    if (engine_software_ddraw_args(argc, argv))
      loop_func = engine_software_ddraw_loop;
+   if (engine_software_sdl_args(argc, argv))
+     loop_func = engine_software_sdl_loop;
    if (!loop_func)
      {
        fprintf(stderr,
@@ -1110,7 +1111,7 @@
                "  -e ENGINE\n"
                "\n"
                "Where ENGINE can be one of:\n"
-               "  x11 xr gl x11-16 ddraw\n"
+               "  x11 xr gl x11-16 ddraw sdl\n"
                );
        exit(-1);
      }
===================================================================
RCS file: /cvs/e/e17/apps/expedite/src/bin/main.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- main.h      27 May 2007 11:10:50 -0000      1.3
+++ main.h      16 Jul 2007 07:27:43 -0000      1.4
@@ -15,6 +15,7 @@
 #include "engine_xrender_x11.h"
 #include "engine_software_16_x11.h"
 #include "engine_software_ddraw.h"
+#include "engine_software_sdl.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

Reply via email to