Skip to content

Commit e382750

Browse files
committed
[gfx] initial commit
1 parent 8c94a7c commit e382750

12 files changed

+4273
-29
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ include $(DEVKITPRO)/libnx/switch_rules
3939
#---------------------------------------------------------------------------------
4040
TARGET := 90spot
4141
BUILD := build
42-
SOURCES := source source/proto source/protobuf-c source/cJSON source/shannon source/dh source/mini-gmp source/spotify source/spotify/proto source/conv
42+
SOURCES := source source/proto source/protobuf-c source/cJSON source/shannon source/dh source/mini-gmp source/spotify source/spotify/proto source/conv source/SDL2_gfx source/gfx_scenes
4343
DATA := data
4444
INCLUDES := include
4545
ROMFS := romfs

README.md

+4
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@ We use the following libraries:
1616
* [shannon](https://web.archive.org/web/20080719073929/http://www.qualcomm.com.au/PublicationsDocs/Shannon-1.0.tgz) by Qualcomm International. Licensed under Apache-1.1.
1717
* [libogg](https://github.com/xiph/ogg) (via static link + headers) by the [Xiph.org Foundation](https://xiph.org/). Licensed under [BSD-2.0](https://github.com/xiph/ogg/blob/master/COPYING).
1818
* [libvorbis](https://github.com/xiph/vorbis) (via static link + headers) by the [Xiph.org Foundation](https://xiph.org/). Licensed under [BSD-2.0](https://github.com/xiph/vorbis/blob/master/COPYING).
19+
* [SDL2](https://github.com/libsdl-org/SDL) (via static link + headers) by [Sam Lantinga](https://github.com/slouken) and the [SDL contributors](https://github.com/libsdl-org/SDL/graphs/contributors) **AND** the [Switch fork](https://github.com/devkitPro/SDL/tree/switch-sdl2-2.0.14-dev) made by devkitPro & various contributors. Licensed under zLib.
20+
* [SDL_ttf](https://github.com/libsdl-org/SDL_ttf) (via static link + headers) by [Sam Lantinga](https://github.com/slouken) and the [SDL contributors](https://github.com/libsdl-org/SDL/graphs/contributors). Licensed under zLib.
21+
* [freetype](https://gitlab.freedesktop.org/freetype/freetype) (via static link) by David Turner, Robert Wilhelm, Werner Lemberg, and [freetype contributors](https://gitlab.freedesktop.org/freetype/freetype/-/graphs/master). Licensed under [The FreeType Project LICENSE](https://gitlab.freedesktop.org/freetype/freetype/-/blob/master/docs/FTL.TXT).
22+
* [SDL2_gfx](https://www.ferzkopp.net/wordpress/2016/01/02/sdl_gfx-sdl2_gfx/) (stripped down) by [A. Schiffler / ferzkopp](https://www.ferzkopp.net/). Licensed under zLib.
1923

2024
Protobuf files found in `source/proto` are compiled with `protoc-c` of the [protobuf-c](https://github.com/protobuf-c/protobuf-c) project by Dave Benson and [the protobuf-c authors](https://github.com/protobuf-c/protobuf-c/graphs/contributors), licensed under [BSD-2.0](https://github.com/protobuf-c/protobuf-c/blob/master/LICENSE). The protobuf files originate from the [librespot](https://github.com/librespot-org/librespot) project by [Paul Lietar](https://github.com/plietar) and [librespot contributors](https://github.com/librespot-org/librespot/graphs/contributors), licensed under [MIT](https://github.com/librespot-org/librespot/blob/dev/LICENSE).
2125

source/SDL2_gfx/COPYING

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
SDL2_gfx COPYING
2+
3+
Library is governed under the ZLib license.
4+
5+
http://www.zlib.net/zlib_license.html

0 commit comments

Comments
 (0)