bump libpicofe for r-pi gl code
authornotaz <notasas@gmail.com>
Sat, 22 Dec 2012 01:12:58 +0000 (03:12 +0200)
committernotaz <notasas@gmail.com>
Sun, 23 Dec 2012 00:18:40 +0000 (02:18 +0200)
Makefile
configure
frontend/libpicofe
frontend/plat_sdl.c

index a3cd3b2..0d72dea 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -138,9 +138,10 @@ OBJS += frontend/libpicofe/plat_dummy.o
 OBJS += frontend/libpicofe/linux/in_evdev.o
 OBJS += frontend/plat_sdl.o
 ifeq "$(HAVE_GLES)" "1"
 OBJS += frontend/libpicofe/linux/in_evdev.o
 OBJS += frontend/plat_sdl.o
 ifeq "$(HAVE_GLES)" "1"
-OBJS += frontend/libpicofe/gl.o
+OBJS += frontend/libpicofe/gl.o frontend/libpicofe/gl_platform.o
 LDLIBS += $(LDLIBS_GLES)
 frontend/libpicofe/plat_sdl.o: CFLAGS += -DHAVE_GLES $(CFLAGS_GLES)
 LDLIBS += $(LDLIBS_GLES)
 frontend/libpicofe/plat_sdl.o: CFLAGS += -DHAVE_GLES $(CFLAGS_GLES)
+frontend/libpicofe/gl_platform.o: CFLAGS += -DHAVE_GLES $(CFLAGS_GLES)
 frontend/libpicofe/gl.o: CFLAGS += -DHAVE_GLES $(CFLAGS_GLES)
 frontend/plat_sdl.o: CFLAGS += -DHAVE_GLES $(CFLAGS_GLES)
 endif
 frontend/libpicofe/gl.o: CFLAGS += -DHAVE_GLES $(CFLAGS_GLES)
 frontend/plat_sdl.o: CFLAGS += -DHAVE_GLES $(CFLAGS_GLES)
 endif
index 8ef7611..f55e9b6 100755 (executable)
--- a/configure
+++ b/configure
@@ -425,6 +425,9 @@ echo "enable dynarec      $enable_dynarec"
 echo "ARMv7 optimizations $have_armv7"
 echo "enable ARM NEON     $have_arm_neon"
 echo "tslib support       $have_tslib"
 echo "ARMv7 optimizations $have_armv7"
 echo "enable ARM NEON     $have_arm_neon"
 echo "tslib support       $have_tslib"
+if [ "$platform" = "generic" ]; then
+  echo "OpenGL ES output    $have_gles"
+fi
 
 echo "# Automatically generated by configure" > $config_mak
 printf "# Configured with:" >> $config_mak
 
 echo "# Automatically generated by configure" > $config_mak
 printf "# Configured with:" >> $config_mak
index e81b987..0d645bc 160000 (submodule)
@@ -1 +1 @@
-Subproject commit e81b987fc1e567f92298087e32e5d9f01fce0aa7
+Subproject commit 0d645bc539fdc073f20c4dea9f4a4e218cebec0e
index ec2d9c2..5b85375 100644 (file)
@@ -69,7 +69,7 @@ static int change_video_mode(void)
     h = psx_h;
   }
 
     h = psx_h;
   }
 
-  return plat_sdl_change_video_mode(w, h);
+  return plat_sdl_change_video_mode(w, h, 0);
 }
 
 void plat_init(void)
 }
 
 void plat_init(void)