aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornotaz2012-03-04 20:16:43 +0200
committernotaz2012-03-04 22:35:18 +0200
commitea1f6f2f95a7e4df3da3fd8433aca1718ea5c575 (patch)
treec162e9b14a80dd37d2a75b1e61b1759ed8df20ab
parente60da1599d018abcd8256f7a7259678b601d306d (diff)
downloadpcsx_rearmed-ea1f6f2f95a7e4df3da3fd8433aca1718ea5c575.tar.gz
pcsx_rearmed-ea1f6f2f95a7e4df3da3fd8433aca1718ea5c575.tar.bz2
pcsx_rearmed-ea1f6f2f95a7e4df3da3fd8433aca1718ea5c575.zip
release r14
-rw-r--r--Makefile2
-rw-r--r--Makefile.caanoo4
-rw-r--r--readme.txt10
3 files changed, 15 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 9c7cba9..21add20 100644
--- 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
diff --git a/Makefile.caanoo b/Makefile.caanoo
index 290ca9c..77e8e4b 100644
--- a/Makefile.caanoo
+++ b/Makefile.caanoo
@@ -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/
diff --git a/readme.txt b/readme.txt
index a2597da..b1459c8 100644
--- a/readme.txt
+++ b/readme.txt
@@ -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)