release r14 r14
authornotaz <notasas@gmail.com>
Sun, 4 Mar 2012 18:16:43 +0000 (20:16 +0200)
committernotaz <notasas@gmail.com>
Sun, 4 Mar 2012 20:35:18 +0000 (22:35 +0200)
Makefile
Makefile.caanoo
readme.txt

index 9c7cba9..21add20 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -189,6 +189,7 @@ clean: $(PLAT_CLEAN)
        $(RM) $(TARGET) $(OBJS) $(TARGET).map
 
 clean_plugins:
+       make -C plugins/gpulib/ clean
        for dir in $(PLUGINS) ; do \
                $(MAKE) -C $$(dirname $$dir) clean; done
 
@@ -208,5 +209,6 @@ rel: pcsx $(PLUGINS) \
        rm out/pcsx.pxml.templ
        mv out/*.so out/plugins/
        mv out/plugins/gpu_unai.so out/plugins/gpuPCSX4ALL.so
+       mv out/plugins/gpu_gles.so out/plugins/gpuGLES.so
        mv out/plugins/gpu_peops.so out/plugins/gpuPEOPS.so
        $(PND_MAKE) -p pcsx_rearmed_$(VER).pnd -d out -x out/pcsx.pxml -i frontend/pandora/pcsx.png -c
index 290ca9c..77e8e4b 100644 (file)
@@ -10,7 +10,8 @@ include Makefile
 caanoo_clean:
        $(RM) frontend/320240/pollux_set
 
-PLUGINS = plugins/spunull/spunull.so plugins/gpu_neon/gpu_unai.so
+PLUGINS = plugins/spunull/spunull.so plugins/gpu_unai/gpu_unai.so \
+       plugins/gpu-gles/gpu_gles.so
 
 # ----------- release -----------
 
@@ -25,6 +26,7 @@ rel_caanoo: pcsx $(PLUGINS) \
        mkdir -p out/pcsx_rearmed/plugins
        cp -r $^ out/pcsx_rearmed/
        mv out/pcsx_rearmed/gpu_unai.so out/pcsx_rearmed/gpuPCSX4ALL.so
+       mv out/pcsx_rearmed/gpu_gles.so out/pcsx_rearmed/gpuGLES.so
        mv out/pcsx_rearmed/*.so out/pcsx_rearmed/plugins/
        mv out/pcsx_rearmed/caanoo.gpe out/pcsx_rearmed/pcsx.gpe
        mv out/pcsx_rearmed/pcsx_rearmed.ini out/
index a2597da..b1459c8 100644 (file)
@@ -75,6 +75,16 @@ spunull.so     - NULL plugin, i.e. no sound emulation.
 Changelog
 ---------
 
+r14 (2012-03-04)
+* GLES GPU: implemented frameskip
+* GLES GPU: merged some changes from schtruck/FPSE
+* Caanoo: potential workaround for save corruption
+  (always exit emulator cleanly before turning off the console
+   to reduce chance of corruption)
+* Caanoo: fixed a bug in GTE code (graphic glitches in some games)
+* Caanoo: reworked vibration support, should support more games
+* various refactoring/minor tweaks
+
 r13 (2012-01-09)
 * yet more fixes for regressions from earlier versions
 * various fixes for NEON GPU (in collaboration with Exophase)