godot/thirdparty
2017-10-10 01:38:41 +09:00
..
b2d_convexdecomp Move other lone thirdparty files to thirdparty/misc 2017-05-26 23:39:47 +02:00
certs Reorder the folders in tools to prepare moving tools/editor 2017-03-18 23:29:43 +01:00
fonts Use Noto fonts for Arabic, Hebrew and Thai 2017-08-29 21:01:31 +09:00
freetype Update freetype to 2.8.1 2017-10-10 01:38:41 +09:00
glew glew: Split thirdparty files and isolate env 2016-10-30 14:51:33 +01:00
jpeg-compressor jpg: Make it a module and split jpgd thirdparty files 2016-10-30 14:51:30 +01:00
libmpcdec mpc: Move to a module and split thirdparty libmpcdec 2016-10-30 14:51:33 +01:00
libogg ogg/vorbis/opus/speex: Make them modules and unbundle thirdparty libs 2016-10-30 14:51:31 +01:00
libpng libpng: Update to upstream version 1.6.32 2017-08-27 13:05:12 +02:00
libtheora theora: Move to a module and split thirdparty lib 2016-10-30 14:51:32 +01:00
libvorbis ogg/vorbis/opus/speex: Make them modules and unbundle thirdparty libs 2016-10-30 14:51:31 +01:00
libwebp Update libwebp to 0.6.0 2017-02-18 00:05:06 +09:00
minizip minizip: Fix compatibility with Gentoo's unique zlib API 2017-08-27 12:41:52 +02:00
misc stb: Update to upstream stb_truetype 1.17 2017-08-27 13:05:52 +02:00
openssl openssl: Sync with upstream 1.0.2l 2017-06-17 11:51:29 +02:00
opus opus: Update to upstream version 1.1.5 2017-06-17 11:53:19 +02:00
pvrtccompressor dds/etc1/pbm/pvr: Make those modules and split thirdparty files 2016-10-30 14:51:30 +01:00
rg-etc1 dds/etc1/pbm/pvr: Make those modules and split thirdparty files 2016-10-30 14:51:30 +01:00
rtaudio rtaudio: Split thirdparty files 2016-10-30 14:51:33 +01:00
speex ogg/vorbis/opus/speex: Make them modules and unbundle thirdparty libs 2016-10-30 14:51:31 +01:00
squish squish: Update to upstream version 1.15 2017-04-09 15:51:41 +02:00
zlib zlib: Update to upstream version 1.2.11 2017-01-16 17:58:43 +01:00
README.md Update freetype to 2.8.1 2017-10-10 01:38:41 +09:00

Third party libraries

b2d_convexdecomp

certs

  • Upstream: ?

TODO.

fonts

Noto Sans

Use UI font if exists, because it has tight vertial metrix and good for UI.

Adobe Source Code Pro Regular

DroidSans*.ttf

  • Upstream: ?

freetype

Files extracted from upstream source:

  • the src/ folder, stripped of the Jamfile files
  • the include/ folder
  • docs/{FTL.TXT,LICENSE.TXT}

glew

Files extracted from upstream source:

  • src/glew.c
  • include/GL/ as GL/
  • LICENSE.txt

jpeg-compressor

Files extracted from upstream source:

  • jpgd.{c,h}

libmpcdec

Files extracted from upstream source:

  • all .c and .h files in libmpcdec/
  • include/mpc as mpc/
  • COPYING from libmpcdec/

libogg

Files extracted from upstream source:

  • src/*.c
  • include/ogg/*.h in ogg/
  • COPYING

libpng

Files extracted from upstream source:

  • all .c and .h files of the main directory, except from example.c and pngtest.c
  • the arm/ folder
  • scripts/pnglibconf.h.prebuilt as pnglibconf.h

libtheora

Files extracted from upstream source:

  • all .c, .h in lib/
  • all .h files in include/theora/ as theora/
  • COPYING and LICENSE

libvorbis

Files extracted from upstream source:

  • src/* except from: lookups.pl, Makefile.*
  • include/vorbis/*.h as vorbis/
  • COPYING

libwebp

Files extracted from upstream source:

  • src/* except from: .am, .rc and .in files
  • AUTHORS, COPYING, PATENTS

Important: The files utils/bit_reader_utils.{c,h} have Godot-made changes to ensure they build for Javascript/HTML5. Those changes are marked with // -- GODOT -- comments.

minizip

Files extracted from the upstream source:

  • contrib/minizip/{crypt.h,ioapi.{c,h},zip.{c,h},unzip.{c,h}}

Important: Some files have Godot-made changes for use in core/io. They are marked with /* GODOT start */ and /* GODOT end */ comments and a patch is provided in the minizip/ folder.

misc

Collection of single-file libraries used in Godot components.

core

modules

scene

openssl

Files extracted from the upstream source:

  • Our openssl/: contains the headers installed in /usr/include/openssl; gather them in the source tarball with make links and cp -f include/openssl/*.h ../openssl/openssl/
  • Our crypto/: copy of upstream crypto/, with some cleanup (see below).
  • Our ssl/: copy of upstream ssl/, with some cleanup (see below).
  • Cleanup:
    find \( -name "Makefile" -o -name "*.S" -o -name "*.bat" -o -name "*.bc" \
      -o -name "*.com" -o -name "*.cnf" -o -name "*.ec" -o -name "*.fre" \
      -o -name "*.gcc" -o -name "*.in" -o -name "*.lnx" -o -name "*.m4" \
      -o -name "*.pl" -o -name "*.pod" -o -name "*.s" -o -name "*.sh" \
      -o -name "*.sol" -o -name "*test*" \) -delete
    cd openssl; for file in *.h; do find ../{crypto,ssl} -name "$file" -delete; done
    
    For the rest check the git status and decide.
  • e_os.h
  • Apply the Godot-specific patches in the patches/ folder.

opus

Files extracted from upstream source:

  • all .c and .h files in src/ (both opus and opusfile), except opus_demo.c
  • all .h files in include/ (both opus and opusfile) as opus/
  • celt/ and silk/ subfolders
  • COPYING

pvrtccompressor

Files extracted from upstream source:

  • all .cpp and .h files apart from main.cpp
  • LICENSE.TXT

rg-etc1

Files extracted from upstream source:

  • rg_etc1.{cpp,h}

rtaudio

Files extracted from upstream source:

  • RtAudio.{cpp,h}

speex

squish

Files extracted from upstream source:

  • all .cpp, .h and .inl files

zlib

Files extracted from upstream source:

  • all .c and .h files