]> Chaos Git - corbenik/ctrulib.git/commitdiff
Bump version to v1.1.0 v1.1.0
authorfincs <fincs.alt1@gmail.com>
Wed, 6 Jan 2016 18:53:09 +0000 (19:53 +0100)
committerfincs <fincs.alt1@gmail.com>
Wed, 6 Jan 2016 18:53:09 +0000 (19:53 +0100)
Changelog.md
libctru/Makefile
libctru/include/3ds.h

index 42469e53e916c5270af93c4e742cbf8043f0d99a..f6d50be75a64f046b2af4399197c647b085c17ea 100644 (file)
@@ -1,5 +1,25 @@
 # Changelog
 
+## Version 1.1.0
+
+* Additions:
+  - GSPGPU/GX code was revised and enhanced:
+    - Screens can be buffer-swapped independently using the new gfxConfigScreen function.
+    - Added gspSetEventCallback for running event code directly on the GSP thread.
+    - Added gspWaitForAnyEvent for waiting for any GSP event.
+    - Added gfxIs3D for retrieving 3D-enable status.
+  - Added AM_InstallFirm.
+  - Added __sync_get_arbiter.
+  - Added support for usleep.
+
+* Changes:
+  - NDSP thread priority has been increasing, therefore mitigating potential sound issues due to high CPU usage on the main thread.
+  - RomFS initialization no longer makes romfs:/ the default device.
+
+* Bug fixes:
+  - Fixed the timeout parameter in svcArbitrateAddress.
+  - Fixed svcSetTimer.
+
 ## Version 1.0.0
 
 * New features:
index dad4a568b05ce900901fa4ac8acf2d525e08f24d..df51cae0e63a2ad596a4ae98bf99e7dcc5070817 100644 (file)
@@ -9,7 +9,7 @@ endif
 include $(DEVKITARM)/base_rules
 
 export LIBCTRU_MAJOR   := 1
-export LIBCTRU_MINOR   := 0
+export LIBCTRU_MINOR   := 1
 export LIBCTRU_PATCH   := 0
 
 
index 1a7b2f993e77139f22245c263e24bf04c3595a19..125a5eaccd1491b732937dd5f0363227194d59b8 100644 (file)
@@ -81,6 +81,7 @@ extern "C" {
  * @example graphics/printing/multiple-windows-text/source/main.c
  * @example graphics/gpu/fragment_light/source/main.c
  * @example graphics/gpu/geoshader/source/main.c
+ * @example graphics/gpu/gpusprites/source/main.c
  * @example graphics/gpu/immediate/source/main.c
  * @example graphics/gpu/simple_tri/source/main.c
  * @example graphics/gpu/textured_cube/source/main.c