├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── LICENSE ├── README.md ├── assets ├── appicon.rc ├── ledit.desktop ├── logo.ico ├── logo.png ├── nord-theme.json ├── screenshot.png ├── screenshot2.png ├── screenshot3.png └── tokyo-night.json ├── init.sh ├── language-syntaxes ├── cmake.json ├── markdown.json ├── rust.json ├── sql.json └── typst.json ├── shaders ├── camera.vert ├── cursor.frag ├── cursor.vert ├── simple.fs └── simple.vs ├── src ├── accent.cc ├── accent.h ├── cursor.cc ├── cursor.h ├── font_atlas.cc ├── font_atlas.h ├── glad.c ├── glad.h ├── highlighting.cc ├── highlighting.h ├── khrplatform.h ├── la.cc ├── la.h ├── languages.h ├── main.cc ├── providers.cc ├── providers.h ├── selection.cc ├── selection.h ├── shader.cc ├── shader.h ├── shaders.h ├── state.cc ├── state.h ├── u8String.h ├── utf8String.cc ├── utf8String.h ├── utils.cc ├── utils.h ├── vim.cc ├── vim.h ├── vim_actions.h ├── vim_actions │ ├── AAAction.cc │ ├── AAction.cc │ ├── BAction.cc │ ├── BackspaceAction.cc │ ├── BracketAction.cc │ ├── CAction.cc │ ├── CCAction.cc │ ├── ColonAction.cc │ ├── CommaAction.cc │ ├── CommentAction.cc │ ├── CtrlUAction.cc │ ├── DAction.cc │ ├── DDAction.cc │ ├── DollarAction.cc │ ├── EAction.cc │ ├── EnterAction.cc │ ├── EscapeAction.cc │ ├── FindAction.cc │ ├── Finder.cc │ ├── FontSizeAction.cc │ ├── GAction.cc │ ├── GGAction.cc │ ├── HAction.cc │ ├── IAction.cc │ ├── IIAction.cc │ ├── IndentAction.cc │ ├── JAction.cc │ ├── KAction.cc │ ├── LAction.cc │ ├── MoveAction.cc │ ├── OAction.cc │ ├── OOAction.cc │ ├── PAction.cc │ ├── ParagraphAction.cc │ ├── ParenAction.cc │ ├── PercentAction.cc │ ├── QuoteAction.cc │ ├── RAction.cc │ ├── SemicolonAction.cc │ ├── SimpleCopy.cc │ ├── SlashAction.cc │ ├── TabAction.cc │ ├── UAction.cc │ ├── VAction.cc │ ├── WAction.cc │ ├── XAction.cc │ ├── YAction.cc │ ├── ZeroAction.cc │ └── register.cc ├── win32_icon_utils.h └── windows.h └── third-party ├── freetype2 ├── .clang-format ├── CMakeLists.txt ├── ChangeLog ├── LICENSE.TXT ├── MSBuild.rsp ├── MSBuild.sln ├── Makefile ├── README ├── README.git ├── autogen.sh ├── builds │ ├── amiga │ │ ├── README │ │ ├── include │ │ │ └── config │ │ │ │ ├── ftconfig.h │ │ │ │ └── ftmodule.h │ │ ├── makefile │ │ ├── makefile.os4 │ │ ├── smakefile │ │ └── src │ │ │ └── base │ │ │ ├── ftdebug.c │ │ │ └── ftsystem.c │ ├── ansi │ │ ├── ansi-def.mk │ │ └── ansi.mk │ ├── atari │ │ ├── ATARI.H │ │ ├── FNames.SIC │ │ ├── FREETYPE.PRJ │ │ ├── README.TXT │ │ ├── deflinejoiner.awk │ │ └── gen-purec-patch.sh │ ├── beos │ │ ├── beos-def.mk │ │ ├── beos.mk │ │ └── detect.mk │ ├── cmake │ │ ├── FindBrotliDec.cmake │ │ ├── FindHarfBuzz.cmake │ │ ├── iOS.cmake │ │ └── testbuild.sh │ ├── compiler │ │ ├── ansi-cc.mk │ │ ├── bcc-dev.mk │ │ ├── bcc.mk │ │ ├── emx.mk │ │ ├── gcc-dev.mk │ │ ├── gcc.mk │ │ ├── intelc.mk │ │ ├── unix-lcc.mk │ │ ├── visualage.mk │ │ ├── visualc.mk │ │ ├── watcom.mk │ │ └── win-lcc.mk │ ├── detect.mk │ ├── dos │ │ ├── detect.mk │ │ ├── dos-def.mk │ │ ├── dos-emx.mk │ │ ├── dos-gcc.mk │ │ └── dos-wat.mk │ ├── exports.mk │ ├── freetype.mk │ ├── link_dos.mk │ ├── link_std.mk │ ├── mac │ │ ├── FreeType.m68k_cfm.make.txt │ │ ├── FreeType.m68k_far.make.txt │ │ ├── FreeType.ppc_carbon.make.txt │ │ ├── FreeType.ppc_classic.make.txt │ │ ├── README │ │ ├── ascii2mpw.py │ │ ├── freetype-Info.plist │ │ ├── ftlib.prj.xml │ │ └── ftmac.c │ ├── meson │ │ ├── extract_freetype_version.py │ │ ├── extract_libtool_version.py │ │ ├── generate_reference_docs.py │ │ ├── parse_modules_cfg.py │ │ └── process_ftoption_h.py │ ├── modules.mk │ ├── os2 │ │ ├── detect.mk │ │ ├── os2-def.mk │ │ ├── os2-dev.mk │ │ └── os2-gcc.mk │ ├── symbian │ │ ├── bld.inf │ │ └── freetype.mmp │ ├── toplevel.mk │ ├── unix │ │ ├── aclocal.m4 │ │ ├── ax_compare_version.m4 │ │ ├── ax_prog_python_version.m4 │ │ ├── ax_pthread.m4 │ │ ├── config.guess │ │ ├── config.sub │ │ ├── configure │ │ ├── configure.ac │ │ ├── configure.raw │ │ ├── detect.mk │ │ ├── freetype-config.in │ │ ├── freetype2.in │ │ ├── freetype2.m4 │ │ ├── ft-munmap.m4 │ │ ├── ftconfig.h.in │ │ ├── ftsystem.c │ │ ├── install-sh │ │ ├── install.mk │ │ ├── ltmain.sh │ │ ├── pkg.m4 │ │ ├── unix-cc.in │ │ ├── unix-def.in │ │ ├── unix-dev.mk │ │ ├── unix-lcc.mk │ │ ├── unix.mk │ │ └── unixddef.mk │ ├── vms │ │ ├── apinames_vms.bash │ │ ├── ftconfig.h │ │ └── ftsystem.c │ ├── wince │ │ ├── ftdebug.c │ │ ├── vc2005-ce │ │ │ ├── freetype.sln │ │ │ ├── freetype.vcproj │ │ │ └── index.html │ │ └── vc2008-ce │ │ │ ├── freetype.sln │ │ │ ├── freetype.vcproj │ │ │ └── index.html │ └── windows │ │ ├── detect.mk │ │ ├── ftdebug.c │ │ ├── ftsystem.c │ │ ├── vc2010 │ │ ├── freetype.user.props │ │ ├── freetype.vcxproj │ │ ├── freetype.vcxproj.filters │ │ └── index.html │ │ ├── visualc │ │ ├── freetype.dsp │ │ ├── freetype.dsw │ │ ├── freetype.sln │ │ ├── freetype.vcproj │ │ └── index.html │ │ ├── visualce │ │ ├── freetype.dsp │ │ ├── freetype.dsw │ │ ├── freetype.vcproj │ │ └── index.html │ │ ├── w32-bcc.mk │ │ ├── w32-bccd.mk │ │ ├── w32-dev.mk │ │ ├── w32-gcc.mk │ │ ├── w32-icc.mk │ │ ├── w32-intl.mk │ │ ├── w32-lcc.mk │ │ ├── w32-mingw32.mk │ │ ├── w32-vcc.mk │ │ ├── w32-wat.mk │ │ └── win32-def.mk ├── configure ├── devel │ ├── ft2build.h │ └── ftoption.h ├── docs │ ├── CHANGES │ ├── CMAKE │ ├── CUSTOMIZE │ ├── DEBUG │ ├── DOCGUIDE │ ├── FTL.TXT │ ├── GPLv2.TXT │ ├── INSTALL │ ├── INSTALL.ANY │ ├── INSTALL.CROSS │ ├── INSTALL.GNU │ ├── INSTALL.MAC │ ├── INSTALL.UNIX │ ├── INSTALL.VMS │ ├── MAKEPP │ ├── PROBLEMS │ ├── README │ ├── TODO │ ├── VERSIONS.TXT │ ├── formats.txt │ ├── freetype-config.1 │ ├── freetype-web.txt │ ├── oldlogs │ │ ├── ChangeLog.20 │ │ ├── ChangeLog.21 │ │ ├── ChangeLog.210 │ │ ├── ChangeLog.22 │ │ ├── ChangeLog.23 │ │ ├── ChangeLog.24 │ │ ├── ChangeLog.25 │ │ ├── ChangeLog.26 │ │ ├── ChangeLog.27 │ │ ├── ChangeLog.28 │ │ └── ChangeLog.29 │ ├── raster.txt │ └── reference │ │ ├── 404.html │ │ ├── assets │ │ ├── images │ │ │ └── favicon.png │ │ ├── javascripts │ │ │ ├── bundle.fe8b6f2b.min.js │ │ │ ├── bundle.fe8b6f2b.min.js.map │ │ │ ├── lunr │ │ │ │ ├── min │ │ │ │ │ ├── lunr.ar.min.js │ │ │ │ │ ├── lunr.da.min.js │ │ │ │ │ ├── lunr.de.min.js │ │ │ │ │ ├── lunr.du.min.js │ │ │ │ │ ├── lunr.el.min.js │ │ │ │ │ ├── lunr.es.min.js │ │ │ │ │ ├── lunr.fi.min.js │ │ │ │ │ ├── lunr.fr.min.js │ │ │ │ │ ├── lunr.he.min.js │ │ │ │ │ ├── lunr.hi.min.js │ │ │ │ │ ├── lunr.hu.min.js │ │ │ │ │ ├── lunr.hy.min.js │ │ │ │ │ ├── lunr.it.min.js │ │ │ │ │ ├── lunr.ja.min.js │ │ │ │ │ ├── lunr.jp.min.js │ │ │ │ │ ├── lunr.kn.min.js │ │ │ │ │ ├── lunr.ko.min.js │ │ │ │ │ ├── lunr.multi.min.js │ │ │ │ │ ├── lunr.nl.min.js │ │ │ │ │ ├── lunr.no.min.js │ │ │ │ │ ├── lunr.pt.min.js │ │ │ │ │ ├── lunr.ro.min.js │ │ │ │ │ ├── lunr.ru.min.js │ │ │ │ │ ├── lunr.sa.min.js │ │ │ │ │ ├── lunr.stemmer.support.min.js │ │ │ │ │ ├── lunr.sv.min.js │ │ │ │ │ ├── lunr.ta.min.js │ │ │ │ │ ├── lunr.te.min.js │ │ │ │ │ ├── lunr.th.min.js │ │ │ │ │ ├── lunr.tr.min.js │ │ │ │ │ ├── lunr.vi.min.js │ │ │ │ │ └── lunr.zh.min.js │ │ │ │ ├── tinyseg.js │ │ │ │ └── wordcut.js │ │ │ └── workers │ │ │ │ ├── search.b8dbb3d2.min.js │ │ │ │ └── search.b8dbb3d2.min.js.map │ │ └── stylesheets │ │ │ ├── main.3cba04c6.min.css │ │ │ ├── main.3cba04c6.min.css.map │ │ │ ├── palette.06af60db.min.css │ │ │ └── palette.06af60db.min.css.map │ │ ├── ft2-auto_hinter.html │ │ ├── ft2-basic_types.html │ │ ├── ft2-bdf_fonts.html │ │ ├── ft2-bitmap_handling.html │ │ ├── ft2-bzip2.html │ │ ├── ft2-cache_subsystem.html │ │ ├── ft2-cff_driver.html │ │ ├── ft2-character_mapping.html │ │ ├── ft2-cid_fonts.html │ │ ├── ft2-color_management.html │ │ ├── ft2-computations.html │ │ ├── ft2-debugging_apis.html │ │ ├── ft2-error_code_values.html │ │ ├── ft2-error_enumerations.html │ │ ├── ft2-face_creation.html │ │ ├── ft2-font_formats.html │ │ ├── ft2-font_testing_macros.html │ │ ├── ft2-gasp_table.html │ │ ├── ft2-glyph_management.html │ │ ├── ft2-glyph_retrieval.html │ │ ├── ft2-glyph_stroker.html │ │ ├── ft2-glyph_variants.html │ │ ├── ft2-gx_validation.html │ │ ├── ft2-gzip.html │ │ ├── ft2-header_file_macros.html │ │ ├── ft2-header_inclusion.html │ │ ├── ft2-incremental.html │ │ ├── ft2-index.html │ │ ├── ft2-information_retrieval.html │ │ ├── ft2-layer_management.html │ │ ├── ft2-lcd_rendering.html │ │ ├── ft2-library_setup.html │ │ ├── ft2-list_processing.html │ │ ├── ft2-lzw.html │ │ ├── ft2-mac_specific.html │ │ ├── ft2-module_management.html │ │ ├── ft2-multiple_masters.html │ │ ├── ft2-ot_svg_driver.html │ │ ├── ft2-ot_validation.html │ │ ├── ft2-other_api_data.html │ │ ├── ft2-outline_processing.html │ │ ├── ft2-parameter_tags.html │ │ ├── ft2-pcf_driver.html │ │ ├── ft2-pfr_fonts.html │ │ ├── ft2-preamble.html │ │ ├── ft2-properties.html │ │ ├── ft2-quick_advance.html │ │ ├── ft2-raster.html │ │ ├── ft2-sfnt_names.html │ │ ├── ft2-sizes_management.html │ │ ├── ft2-sizing_and_scaling.html │ │ ├── ft2-svg_fonts.html │ │ ├── ft2-system_interface.html │ │ ├── ft2-t1_cid_driver.html │ │ ├── ft2-truetype_engine.html │ │ ├── ft2-truetype_tables.html │ │ ├── ft2-tt_driver.html │ │ ├── ft2-type1_tables.html │ │ ├── ft2-user_allocation.html │ │ ├── ft2-winfnt_fonts.html │ │ ├── images │ │ └── favico.ico │ │ ├── index.html │ │ ├── javascripts │ │ └── extra.js │ │ ├── search │ │ └── search_index.json │ │ ├── sitemap.xml │ │ ├── sitemap.xml.gz │ │ └── stylesheets │ │ └── extra.css ├── include │ ├── dlg │ │ ├── dlg.h │ │ └── output.h │ ├── freetype │ │ ├── config │ │ │ ├── ftconfig.h │ │ │ ├── ftheader.h │ │ │ ├── ftmodule.h │ │ │ ├── ftoption.h │ │ │ ├── ftstdlib.h │ │ │ ├── integer-types.h │ │ │ ├── mac-support.h │ │ │ └── public-macros.h │ │ ├── freetype.h │ │ ├── ftadvanc.h │ │ ├── ftbbox.h │ │ ├── ftbdf.h │ │ ├── ftbitmap.h │ │ ├── ftbzip2.h │ │ ├── ftcache.h │ │ ├── ftchapters.h │ │ ├── ftcid.h │ │ ├── ftcolor.h │ │ ├── ftdriver.h │ │ ├── fterrdef.h │ │ ├── fterrors.h │ │ ├── ftfntfmt.h │ │ ├── ftgasp.h │ │ ├── ftglyph.h │ │ ├── ftgxval.h │ │ ├── ftgzip.h │ │ ├── ftimage.h │ │ ├── ftincrem.h │ │ ├── ftlcdfil.h │ │ ├── ftlist.h │ │ ├── ftlogging.h │ │ ├── ftlzw.h │ │ ├── ftmac.h │ │ ├── ftmm.h │ │ ├── ftmodapi.h │ │ ├── ftmoderr.h │ │ ├── ftotval.h │ │ ├── ftoutln.h │ │ ├── ftparams.h │ │ ├── ftpfr.h │ │ ├── ftrender.h │ │ ├── ftsizes.h │ │ ├── ftsnames.h │ │ ├── ftstroke.h │ │ ├── ftsynth.h │ │ ├── ftsystem.h │ │ ├── fttrigon.h │ │ ├── fttypes.h │ │ ├── ftwinfnt.h │ │ ├── internal │ │ │ ├── autohint.h │ │ │ ├── cffotypes.h │ │ │ ├── cfftypes.h │ │ │ ├── compiler-macros.h │ │ │ ├── ftcalc.h │ │ │ ├── ftdebug.h │ │ │ ├── ftdrv.h │ │ │ ├── ftgloadr.h │ │ │ ├── fthash.h │ │ │ ├── ftmemory.h │ │ │ ├── ftmmtypes.h │ │ │ ├── ftobjs.h │ │ │ ├── ftpsprop.h │ │ │ ├── ftrfork.h │ │ │ ├── ftserv.h │ │ │ ├── ftstream.h │ │ │ ├── fttrace.h │ │ │ ├── ftvalid.h │ │ │ ├── psaux.h │ │ │ ├── pshints.h │ │ │ ├── services │ │ │ │ ├── svbdf.h │ │ │ │ ├── svcfftl.h │ │ │ │ ├── svcid.h │ │ │ │ ├── svfntfmt.h │ │ │ │ ├── svgldict.h │ │ │ │ ├── svgxval.h │ │ │ │ ├── svkern.h │ │ │ │ ├── svmetric.h │ │ │ │ ├── svmm.h │ │ │ │ ├── svotval.h │ │ │ │ ├── svpfr.h │ │ │ │ ├── svpostnm.h │ │ │ │ ├── svprop.h │ │ │ │ ├── svpscmap.h │ │ │ │ ├── svpsinfo.h │ │ │ │ ├── svsfnt.h │ │ │ │ ├── svttcmap.h │ │ │ │ ├── svtteng.h │ │ │ │ ├── svttglyf.h │ │ │ │ └── svwinfnt.h │ │ │ ├── sfnt.h │ │ │ ├── svginterface.h │ │ │ ├── t1types.h │ │ │ ├── tttypes.h │ │ │ └── wofftypes.h │ │ ├── otsvg.h │ │ ├── t1tables.h │ │ ├── ttnameid.h │ │ ├── tttables.h │ │ └── tttags.h │ └── ft2build.h ├── meson.build ├── meson_options.txt ├── modules.cfg ├── objs │ └── README ├── src │ ├── autofit │ │ ├── afblue.c │ │ ├── afblue.cin │ │ ├── afblue.dat │ │ ├── afblue.h │ │ ├── afblue.hin │ │ ├── afcjk.c │ │ ├── afcjk.h │ │ ├── afcover.h │ │ ├── afdummy.c │ │ ├── afdummy.h │ │ ├── aferrors.h │ │ ├── afglobal.c │ │ ├── afglobal.h │ │ ├── afhints.c │ │ ├── afhints.h │ │ ├── afindic.c │ │ ├── afindic.h │ │ ├── aflatin.c │ │ ├── aflatin.h │ │ ├── afloader.c │ │ ├── afloader.h │ │ ├── afmodule.c │ │ ├── afmodule.h │ │ ├── afranges.c │ │ ├── afranges.h │ │ ├── afscript.h │ │ ├── afshaper.c │ │ ├── afshaper.h │ │ ├── afstyles.h │ │ ├── aftypes.h │ │ ├── afws-decl.h │ │ ├── afws-iter.h │ │ ├── autofit.c │ │ ├── ft-hb.c │ │ ├── ft-hb.h │ │ ├── module.mk │ │ └── rules.mk │ ├── base │ │ ├── ftadvanc.c │ │ ├── ftbase.c │ │ ├── ftbase.h │ │ ├── ftbbox.c │ │ ├── ftbdf.c │ │ ├── ftbitmap.c │ │ ├── ftcalc.c │ │ ├── ftcid.c │ │ ├── ftcolor.c │ │ ├── ftdbgmem.c │ │ ├── ftdebug.c │ │ ├── fterrors.c │ │ ├── ftfntfmt.c │ │ ├── ftfstype.c │ │ ├── ftgasp.c │ │ ├── ftgloadr.c │ │ ├── ftglyph.c │ │ ├── ftgxval.c │ │ ├── fthash.c │ │ ├── ftinit.c │ │ ├── ftlcdfil.c │ │ ├── ftmac.c │ │ ├── ftmm.c │ │ ├── ftobjs.c │ │ ├── ftotval.c │ │ ├── ftoutln.c │ │ ├── ftpatent.c │ │ ├── ftpfr.c │ │ ├── ftpsprop.c │ │ ├── ftrfork.c │ │ ├── ftsnames.c │ │ ├── ftstream.c │ │ ├── ftstroke.c │ │ ├── ftsynth.c │ │ ├── ftsystem.c │ │ ├── fttrigon.c │ │ ├── fttype1.c │ │ ├── ftutil.c │ │ ├── ftver.rc │ │ ├── ftwinfnt.c │ │ ├── md5.c │ │ ├── md5.h │ │ └── rules.mk │ ├── bdf │ │ ├── README │ │ ├── bdf.c │ │ ├── bdf.h │ │ ├── bdfdrivr.c │ │ ├── bdfdrivr.h │ │ ├── bdferror.h │ │ ├── bdflib.c │ │ ├── module.mk │ │ └── rules.mk │ ├── bzip2 │ │ ├── ftbzip2.c │ │ └── rules.mk │ ├── cache │ │ ├── ftcache.c │ │ ├── ftcbasic.c │ │ ├── ftccache.c │ │ ├── ftccache.h │ │ ├── ftccback.h │ │ ├── ftccmap.c │ │ ├── ftcerror.h │ │ ├── ftcglyph.c │ │ ├── ftcglyph.h │ │ ├── ftcimage.c │ │ ├── ftcimage.h │ │ ├── ftcmanag.c │ │ ├── ftcmanag.h │ │ ├── ftcmru.c │ │ ├── ftcmru.h │ │ ├── ftcsbits.c │ │ ├── ftcsbits.h │ │ └── rules.mk │ ├── cff │ │ ├── cff.c │ │ ├── cffcmap.c │ │ ├── cffcmap.h │ │ ├── cffdrivr.c │ │ ├── cffdrivr.h │ │ ├── cfferrs.h │ │ ├── cffgload.c │ │ ├── cffgload.h │ │ ├── cffload.c │ │ ├── cffload.h │ │ ├── cffobjs.c │ │ ├── cffobjs.h │ │ ├── cffparse.c │ │ ├── cffparse.h │ │ ├── cfftoken.h │ │ ├── module.mk │ │ └── rules.mk │ ├── cid │ │ ├── ciderrs.h │ │ ├── cidgload.c │ │ ├── cidgload.h │ │ ├── cidload.c │ │ ├── cidload.h │ │ ├── cidobjs.c │ │ ├── cidobjs.h │ │ ├── cidparse.c │ │ ├── cidparse.h │ │ ├── cidriver.c │ │ ├── cidriver.h │ │ ├── cidtoken.h │ │ ├── module.mk │ │ ├── rules.mk │ │ └── type1cid.c │ ├── dlg │ │ ├── dlg.c │ │ ├── dlgwrap.c │ │ └── rules.mk │ ├── gxvalid │ │ ├── README │ │ ├── gxvalid.c │ │ ├── gxvalid.h │ │ ├── gxvbsln.c │ │ ├── gxvcommn.c │ │ ├── gxvcommn.h │ │ ├── gxverror.h │ │ ├── gxvfeat.c │ │ ├── gxvfeat.h │ │ ├── gxvfgen.c │ │ ├── gxvjust.c │ │ ├── gxvkern.c │ │ ├── gxvlcar.c │ │ ├── gxvmod.c │ │ ├── gxvmod.h │ │ ├── gxvmort.c │ │ ├── gxvmort.h │ │ ├── gxvmort0.c │ │ ├── gxvmort1.c │ │ ├── gxvmort2.c │ │ ├── gxvmort4.c │ │ ├── gxvmort5.c │ │ ├── gxvmorx.c │ │ ├── gxvmorx.h │ │ ├── gxvmorx0.c │ │ ├── gxvmorx1.c │ │ ├── gxvmorx2.c │ │ ├── gxvmorx4.c │ │ ├── gxvmorx5.c │ │ ├── gxvopbd.c │ │ ├── gxvprop.c │ │ ├── gxvtrak.c │ │ ├── module.mk │ │ └── rules.mk │ ├── gzip │ │ ├── README.freetype │ │ ├── adler32.c │ │ ├── crc32.c │ │ ├── crc32.h │ │ ├── ftgzip.c │ │ ├── ftzconf.h │ │ ├── gzguts.h │ │ ├── inffast.c │ │ ├── inffast.h │ │ ├── inffixed.h │ │ ├── inflate.c │ │ ├── inflate.h │ │ ├── inftrees.c │ │ ├── inftrees.h │ │ ├── patches │ │ │ └── freetype-zlib.diff │ │ ├── rules.mk │ │ ├── zlib.h │ │ ├── zutil.c │ │ └── zutil.h │ ├── lzw │ │ ├── ftlzw.c │ │ ├── ftzopen.c │ │ ├── ftzopen.h │ │ └── rules.mk │ ├── otvalid │ │ ├── module.mk │ │ ├── otvalid.c │ │ ├── otvalid.h │ │ ├── otvbase.c │ │ ├── otvcommn.c │ │ ├── otvcommn.h │ │ ├── otverror.h │ │ ├── otvgdef.c │ │ ├── otvgpos.c │ │ ├── otvgpos.h │ │ ├── otvgsub.c │ │ ├── otvjstf.c │ │ ├── otvmath.c │ │ ├── otvmod.c │ │ ├── otvmod.h │ │ └── rules.mk │ ├── pcf │ │ ├── README │ │ ├── module.mk │ │ ├── pcf.c │ │ ├── pcf.h │ │ ├── pcfdrivr.c │ │ ├── pcfdrivr.h │ │ ├── pcferror.h │ │ ├── pcfread.c │ │ ├── pcfread.h │ │ ├── pcfutil.c │ │ ├── pcfutil.h │ │ └── rules.mk │ ├── pfr │ │ ├── module.mk │ │ ├── pfr.c │ │ ├── pfrcmap.c │ │ ├── pfrcmap.h │ │ ├── pfrdrivr.c │ │ ├── pfrdrivr.h │ │ ├── pfrerror.h │ │ ├── pfrgload.c │ │ ├── pfrgload.h │ │ ├── pfrload.c │ │ ├── pfrload.h │ │ ├── pfrobjs.c │ │ ├── pfrobjs.h │ │ ├── pfrsbit.c │ │ ├── pfrsbit.h │ │ ├── pfrtypes.h │ │ └── rules.mk │ ├── psaux │ │ ├── afmparse.c │ │ ├── afmparse.h │ │ ├── cffdecode.c │ │ ├── cffdecode.h │ │ ├── module.mk │ │ ├── psarrst.c │ │ ├── psarrst.h │ │ ├── psaux.c │ │ ├── psauxerr.h │ │ ├── psauxmod.c │ │ ├── psauxmod.h │ │ ├── psblues.c │ │ ├── psblues.h │ │ ├── psconv.c │ │ ├── psconv.h │ │ ├── pserror.c │ │ ├── pserror.h │ │ ├── psfixed.h │ │ ├── psfont.c │ │ ├── psfont.h │ │ ├── psft.c │ │ ├── psft.h │ │ ├── psglue.h │ │ ├── pshints.c │ │ ├── pshints.h │ │ ├── psintrp.c │ │ ├── psintrp.h │ │ ├── psobjs.c │ │ ├── psobjs.h │ │ ├── psread.c │ │ ├── psread.h │ │ ├── psstack.c │ │ ├── psstack.h │ │ ├── pstypes.h │ │ ├── rules.mk │ │ ├── t1cmap.c │ │ ├── t1cmap.h │ │ ├── t1decode.c │ │ └── t1decode.h │ ├── pshinter │ │ ├── module.mk │ │ ├── pshalgo.c │ │ ├── pshalgo.h │ │ ├── pshglob.c │ │ ├── pshglob.h │ │ ├── pshinter.c │ │ ├── pshmod.c │ │ ├── pshmod.h │ │ ├── pshnterr.h │ │ ├── pshrec.c │ │ ├── pshrec.h │ │ └── rules.mk │ ├── psnames │ │ ├── module.mk │ │ ├── psmodule.c │ │ ├── psmodule.h │ │ ├── psnamerr.h │ │ ├── psnames.c │ │ ├── pstables.h │ │ └── rules.mk │ ├── raster │ │ ├── ftmisc.h │ │ ├── ftraster.c │ │ ├── ftraster.h │ │ ├── ftrend1.c │ │ ├── ftrend1.h │ │ ├── module.mk │ │ ├── raster.c │ │ ├── rasterrs.h │ │ └── rules.mk │ ├── sdf │ │ ├── ftbsdf.c │ │ ├── ftsdf.c │ │ ├── ftsdf.h │ │ ├── ftsdfcommon.c │ │ ├── ftsdfcommon.h │ │ ├── ftsdferrs.h │ │ ├── ftsdfrend.c │ │ ├── ftsdfrend.h │ │ ├── module.mk │ │ ├── rules.mk │ │ └── sdf.c │ ├── sfnt │ │ ├── module.mk │ │ ├── pngshim.c │ │ ├── pngshim.h │ │ ├── rules.mk │ │ ├── sfdriver.c │ │ ├── sfdriver.h │ │ ├── sferrors.h │ │ ├── sfnt.c │ │ ├── sfobjs.c │ │ ├── sfobjs.h │ │ ├── sfwoff.c │ │ ├── sfwoff.h │ │ ├── sfwoff2.c │ │ ├── sfwoff2.h │ │ ├── ttbdf.c │ │ ├── ttbdf.h │ │ ├── ttcmap.c │ │ ├── ttcmap.h │ │ ├── ttcmapc.h │ │ ├── ttcolr.c │ │ ├── ttcolr.h │ │ ├── ttcpal.c │ │ ├── ttcpal.h │ │ ├── ttgpos.c │ │ ├── ttgpos.h │ │ ├── ttkern.c │ │ ├── ttkern.h │ │ ├── ttload.c │ │ ├── ttload.h │ │ ├── ttmtx.c │ │ ├── ttmtx.h │ │ ├── ttpost.c │ │ ├── ttpost.h │ │ ├── ttsbit.c │ │ ├── ttsbit.h │ │ ├── ttsvg.c │ │ ├── ttsvg.h │ │ ├── woff2tags.c │ │ └── woff2tags.h │ ├── smooth │ │ ├── ftgrays.c │ │ ├── ftgrays.h │ │ ├── ftsmerrs.h │ │ ├── ftsmooth.c │ │ ├── ftsmooth.h │ │ ├── module.mk │ │ ├── rules.mk │ │ └── smooth.c │ ├── svg │ │ ├── ftsvg.c │ │ ├── ftsvg.h │ │ ├── module.mk │ │ ├── rules.mk │ │ ├── svg.c │ │ └── svgtypes.h │ ├── tools │ │ ├── afblue.pl │ │ ├── apinames.c │ │ ├── chktrcmp.py │ │ ├── cordic.py │ │ ├── ftrandom │ │ │ ├── Makefile │ │ │ ├── README │ │ │ └── ftrandom.c │ │ ├── glnames.py │ │ ├── make_distribution_archives.py │ │ ├── no-copyright │ │ ├── test_afm.c │ │ ├── test_bbox.c │ │ ├── test_trig.c │ │ ├── update-copyright │ │ ├── update-copyright-year │ │ └── vms_shorten_symbol.c │ ├── truetype │ │ ├── module.mk │ │ ├── rules.mk │ │ ├── truetype.c │ │ ├── ttdriver.c │ │ ├── ttdriver.h │ │ ├── tterrors.h │ │ ├── ttgload.c │ │ ├── ttgload.h │ │ ├── ttgxvar.c │ │ ├── ttgxvar.h │ │ ├── ttinterp.c │ │ ├── ttinterp.h │ │ ├── ttobjs.c │ │ ├── ttobjs.h │ │ ├── ttpload.c │ │ └── ttpload.h │ ├── type1 │ │ ├── module.mk │ │ ├── rules.mk │ │ ├── t1afm.c │ │ ├── t1afm.h │ │ ├── t1driver.c │ │ ├── t1driver.h │ │ ├── t1errors.h │ │ ├── t1gload.c │ │ ├── t1gload.h │ │ ├── t1load.c │ │ ├── t1load.h │ │ ├── t1objs.c │ │ ├── t1objs.h │ │ ├── t1parse.c │ │ ├── t1parse.h │ │ ├── t1tokens.h │ │ └── type1.c │ ├── type42 │ │ ├── module.mk │ │ ├── rules.mk │ │ ├── t42drivr.c │ │ ├── t42drivr.h │ │ ├── t42error.h │ │ ├── t42objs.c │ │ ├── t42objs.h │ │ ├── t42parse.c │ │ ├── t42parse.h │ │ ├── t42types.h │ │ └── type42.c │ └── winfonts │ │ ├── fnterrs.h │ │ ├── module.mk │ │ ├── rules.mk │ │ ├── winfnt.c │ │ └── winfnt.h ├── subprojects │ ├── harfbuzz.wrap │ ├── libpng.wrap │ └── zlib.wrap ├── tests │ ├── README.md │ ├── issue-1063 │ │ └── main.c │ ├── meson.build │ └── scripts │ │ └── download-test-fonts.py └── vms_make.com ├── json └── json.hpp └── lpng1639 ├── .appveyor.yml ├── .gitignore ├── .travis.yml ├── ANNOUNCE ├── AUTHORS ├── CHANGES ├── CMakeLists.txt ├── INSTALL ├── LICENSE ├── Makefile.am ├── Makefile.in ├── README ├── TODO ├── TRADEMARK ├── aclocal.m4 ├── arm ├── arm_init.c ├── filter_neon.S ├── filter_neon_intrinsics.c └── palette_neon_intrinsics.c ├── autogen.sh ├── ci ├── .shellcheckrc ├── LICENSE_MIT.txt ├── README.md ├── ci_lint.sh ├── ci_verify_cmake.sh ├── ci_verify_configure.sh ├── ci_verify_makefiles.sh ├── ci_verify_version.sh ├── lib │ └── ci.lib.sh ├── libexec │ ├── ci_shellify_autoconf.sh │ ├── ci_shellify_c.sh │ ├── ci_shellify_cmake.sh │ └── ci_shellify_shell.sh └── targets │ ├── android │ ├── ci_env.aarch64-linux-android.sh │ ├── ci_env.armv7a-linux-androideabi.sh │ ├── ci_env.i686-linux-android.sh │ └── ci_env.x86_64-linux-android.sh │ ├── cygwin │ ├── ci_env.i686-pc-cygwin.sh │ └── ci_env.x86_64-pc-cygwin.sh │ ├── darwin │ ├── ci_env.arm64-apple-darwin.sh │ └── ci_env.x86_64-apple-darwin.sh │ ├── freebsd │ ├── ci_env.aarch64-unknown-freebsd.sh │ ├── ci_env.i686-unknown-freebsd.sh │ ├── ci_env.riscv64-unknown-freebsd.sh │ └── ci_env.x86_64-unknown-freebsd.sh │ ├── linux │ ├── ci_env.aarch64-linux-gnu.sh │ ├── ci_env.arm-linux-gnueabi.sh │ ├── ci_env.arm-linux-gnueabihf.sh │ ├── ci_env.i686-linux-gnu.sh │ ├── ci_env.mips-linux-gnu.sh │ ├── ci_env.mips64-linux-gnuabi64.sh │ ├── ci_env.mips64el-linux-gnuabi64.sh │ ├── ci_env.mipsel-linux-gnu.sh │ ├── ci_env.mipsisa32r6-linux-gnu.sh │ ├── ci_env.mipsisa32r6el-linux-gnu.sh │ ├── ci_env.mipsisa64r6-linux-gnuabi64.sh │ ├── ci_env.mipsisa64r6el-linux-gnuabi64.sh │ ├── ci_env.powerpc-linux-gnu.sh │ ├── ci_env.powerpc64-linux-gnu.sh │ ├── ci_env.powerpc64le-linux-gnu.sh │ ├── ci_env.riscv64-linux-gnu.sh │ └── ci_env.x86_64-linux-gnu.sh │ ├── msdos │ ├── ci_env.i386-pc-msdoswatcom.sh │ ├── ci_env.i586-pc-msdosdjgpp.sh │ └── ci_env.i86-pc-msdoswatcom.sh │ └── windows │ ├── ci_env.aarch64-windows-llvm.sh │ ├── ci_env.i686-w64-mingw32.sh │ ├── ci_env.i686-windows-llvm.sh │ ├── ci_env.x86_64-w64-mingw32.sh │ └── ci_env.x86_64-windows-llvm.sh ├── compile ├── config.guess ├── config.h.in ├── config.sub ├── configure ├── configure.ac ├── contrib ├── .editorconfig ├── README.txt ├── arm-neon │ ├── README │ ├── android-ndk.c │ ├── linux-auxv.c │ └── linux.c ├── conftest │ ├── README │ ├── basic.dfa │ ├── fixed.dfa │ ├── float-fixed.dfa │ ├── nocompile-limits.dfa │ ├── nolimits.dfa │ ├── pngcp.dfa │ ├── read-full.dfa │ ├── read.dfa │ ├── s_read.dfa │ ├── s_write.dfa │ ├── simple.dfa │ ├── write-full.dfa │ └── write.dfa ├── examples │ ├── .clang-format │ ├── README.txt │ ├── iccfrompng.c │ ├── pngpixel.c │ ├── pngtopng.c │ └── simpleover.c ├── gregbook │ ├── COPYING │ ├── LICENSE │ ├── Makefile.mingw32 │ ├── Makefile.sgi │ ├── Makefile.unx │ ├── Makefile.w32 │ ├── README │ ├── makevms.com │ ├── readpng.c │ ├── readpng.h │ ├── readpng2.c │ ├── readpng2.h │ ├── readppm.c │ ├── rpng-win.c │ ├── rpng-x.c │ ├── rpng2-win.c │ ├── rpng2-x.c │ ├── toucan.png │ ├── wpng.c │ ├── writepng.c │ └── writepng.h ├── libtests │ ├── fakepng.c │ ├── gentests.sh │ ├── makepng.c │ ├── pngimage.c │ ├── pngstest-errors.h │ ├── pngstest.c │ ├── pngunknown.c │ ├── pngvalid.c │ ├── readpng.c │ ├── tarith.c │ └── timepng.c ├── mips-mmi │ └── linux.c ├── mips-msa │ ├── README │ └── linux.c ├── oss-fuzz │ ├── Dockerfile │ ├── README.txt │ ├── build.sh │ ├── libpng_read_fuzzer.cc │ ├── libpng_read_fuzzer.options │ └── png.dict ├── pngexif │ ├── .editorconfig │ ├── .gitignore │ ├── .pylintrc │ ├── LICENSE_MIT.txt │ ├── README.md │ ├── bytepack.py │ ├── exifinfo.py │ ├── pngexifinfo │ ├── pngexifinfo.bat │ └── pngexifinfo.py ├── pngminim │ ├── README │ ├── decoder │ │ ├── README │ │ ├── pngusr.dfa │ │ └── pngusr.h │ ├── encoder │ │ ├── README │ │ ├── pngusr.dfa │ │ └── pngusr.h │ └── preader │ │ ├── README │ │ ├── pngusr.dfa │ │ └── pngusr.h ├── pngminus │ ├── .editorconfig │ ├── .gitignore │ ├── CHANGES.txt │ ├── CMakeLists.txt │ ├── LICENSE.txt │ ├── README.txt │ ├── makevms.com │ ├── png2pnm.c │ ├── pnm2png.c │ ├── test_png2pnm.bat │ ├── test_png2pnm.sh │ ├── test_pngminus.bat │ ├── test_pngminus.sh │ ├── test_pnm2png.bat │ └── test_pnm2png.sh ├── pngsuite │ ├── README │ ├── bad_interlace_conversions.txt │ ├── basn0g01.png │ ├── basn0g02.png │ ├── basn0g04.png │ ├── basn0g08.png │ ├── basn0g16.png │ ├── basn2c08.png │ ├── basn2c16.png │ ├── basn3p01.png │ ├── basn3p02.png │ ├── basn3p04.png │ ├── basn3p08.png │ ├── basn4a08.png │ ├── basn4a16.png │ ├── basn6a08.png │ ├── basn6a16.png │ ├── ftbbn0g01.png │ ├── ftbbn0g02.png │ ├── ftbbn0g04.png │ ├── ftbbn2c16.png │ ├── ftbbn3p08.png │ ├── ftbgn2c16.png │ ├── ftbgn3p08.png │ ├── ftbrn2c08.png │ ├── ftbwn0g16.png │ ├── ftbwn3p08.png │ ├── ftbyn3p08.png │ ├── ftp0n0g08.png │ ├── ftp0n2c08.png │ ├── ftp0n3p08.png │ ├── ftp1n3p08.png │ ├── ibasn0g08.png │ ├── ibasn0g16.png │ ├── ibasn2c08.png │ ├── ibasn2c16.png │ ├── ibasn3p08.png │ ├── ibasn4a08.png │ ├── ibasn4a16.png │ ├── ibasn6a08.png │ ├── ibasn6a16.png │ ├── iftbbn2c16.png │ ├── iftbbn3p08.png │ ├── iftbgn2c16.png │ ├── iftbgn3p08.png │ ├── iftbrn2c08.png │ ├── iftbwn0g16.png │ ├── iftbwn3p08.png │ ├── iftbyn3p08.png │ ├── iftp0n0g08.png │ ├── iftp0n2c08.png │ ├── iftp0n3p08.png │ ├── iftp1n3p08.png │ └── interlaced │ │ ├── README │ │ ├── ibasn0g01.png │ │ ├── ibasn0g02.png │ │ ├── ibasn0g04.png │ │ ├── ibasn3p01.png │ │ ├── ibasn3p02.png │ │ ├── ibasn3p04.png │ │ ├── iftbbn0g01.png │ │ ├── iftbbn0g02.png │ │ └── iftbbn0g04.png ├── powerpc-vsx │ ├── README │ ├── linux.c │ └── linux_aux.c ├── riscv-rvv │ ├── README │ └── linux.c ├── testpngs │ ├── badpal │ │ ├── regression-palette-8.png │ │ ├── small-palette-1.png │ │ ├── small-palette-2.png │ │ ├── small-palette-4.png │ │ ├── small-palette-8.png │ │ ├── test-palette-1.png │ │ ├── test-palette-2.png │ │ ├── test-palette-4.png │ │ └── test-palette-8.png │ ├── crashers │ │ ├── bad_iCCP.png │ │ ├── badadler.png │ │ ├── badcrc.png │ │ ├── empty_ancillary_chunks.png │ │ ├── huge_IDAT.png │ │ ├── huge_bKGD_chunk.png │ │ ├── huge_cHRM_chunk.png │ │ ├── huge_eXIf_chunk.png │ │ ├── huge_gAMA_chunk.png │ │ ├── huge_hIST_chunk.png │ │ ├── huge_iCCP_chunk.png │ │ ├── huge_iTXt_chunk.png │ │ ├── huge_juNK_unsafe_to_copy.png │ │ ├── huge_juNk_safe_to_copy.png │ │ ├── huge_pCAL_chunk.png │ │ ├── huge_pHYs_chunk.png │ │ ├── huge_sCAL_chunk.png │ │ ├── huge_sPLT_chunk.png │ │ ├── huge_sRGB_chunk.png │ │ ├── huge_sTER_chunk.png │ │ ├── huge_tEXt_chunk.png │ │ ├── huge_tIME_chunk.png │ │ └── huge_zTXt_chunk.png │ ├── gray-1-1.8-tRNS.png │ ├── gray-1-1.8.png │ ├── gray-1-linear-tRNS.png │ ├── gray-1-linear.png │ ├── gray-1-sRGB-tRNS.png │ ├── gray-1-sRGB.png │ ├── gray-1-tRNS.png │ ├── gray-1.png │ ├── gray-16-1.8-tRNS.png │ ├── gray-16-1.8.png │ ├── gray-16-linear-tRNS.png │ ├── gray-16-linear.png │ ├── gray-16-sRGB-tRNS.png │ ├── gray-16-sRGB.png │ ├── gray-16-tRNS.png │ ├── gray-16.png │ ├── gray-2-1.8-tRNS.png │ ├── gray-2-1.8.png │ ├── gray-2-linear-tRNS.png │ ├── gray-2-linear.png │ ├── gray-2-sRGB-tRNS.png │ ├── gray-2-sRGB.png │ ├── gray-2-tRNS.png │ ├── gray-2.png │ ├── gray-4-1.8-tRNS.png │ ├── gray-4-1.8.png │ ├── gray-4-linear-tRNS.png │ ├── gray-4-linear.png │ ├── gray-4-sRGB-tRNS.png │ ├── gray-4-sRGB.png │ ├── gray-4-tRNS.png │ ├── gray-4.png │ ├── gray-8-1.8-tRNS.png │ ├── gray-8-1.8.png │ ├── gray-8-linear-tRNS.png │ ├── gray-8-linear.png │ ├── gray-8-sRGB-tRNS.png │ ├── gray-8-sRGB.png │ ├── gray-8-tRNS.png │ ├── gray-8.png │ ├── gray-alpha-16-1.8.png │ ├── gray-alpha-16-linear.png │ ├── gray-alpha-16-sRGB.png │ ├── gray-alpha-16.png │ ├── gray-alpha-8-1.8.png │ ├── gray-alpha-8-linear.png │ ├── gray-alpha-8-sRGB.png │ ├── gray-alpha-8.png │ ├── makepngs.sh │ ├── palette-1-1.8-tRNS.png │ ├── palette-1-1.8.png │ ├── palette-1-linear-tRNS.png │ ├── palette-1-linear.png │ ├── palette-1-sRGB-tRNS.png │ ├── palette-1-sRGB.png │ ├── palette-1-tRNS.png │ ├── palette-1.png │ ├── palette-2-1.8-tRNS.png │ ├── palette-2-1.8.png │ ├── palette-2-linear-tRNS.png │ ├── palette-2-linear.png │ ├── palette-2-sRGB-tRNS.png │ ├── palette-2-sRGB.png │ ├── palette-2-tRNS.png │ ├── palette-2.png │ ├── palette-4-1.8-tRNS.png │ ├── palette-4-1.8.png │ ├── palette-4-linear-tRNS.png │ ├── palette-4-linear.png │ ├── palette-4-sRGB-tRNS.png │ ├── palette-4-sRGB.png │ ├── palette-4-tRNS.png │ ├── palette-4.png │ ├── palette-8-1.8-tRNS.png │ ├── palette-8-1.8.png │ ├── palette-8-linear-tRNS.png │ ├── palette-8-linear.png │ ├── palette-8-sRGB-tRNS.png │ ├── palette-8-sRGB.png │ ├── palette-8-tRNS.png │ ├── palette-8.png │ ├── png-3 │ │ └── cicp-display-p3_reencoded.png │ ├── rgb-16-1.8-tRNS.png │ ├── rgb-16-1.8.png │ ├── rgb-16-linear-tRNS.png │ ├── rgb-16-linear.png │ ├── rgb-16-sRGB-tRNS.png │ ├── rgb-16-sRGB.png │ ├── rgb-16-tRNS.png │ ├── rgb-16.png │ ├── rgb-8-1.8-tRNS.png │ ├── rgb-8-1.8.png │ ├── rgb-8-linear-tRNS.png │ ├── rgb-8-linear.png │ ├── rgb-8-sRGB-tRNS.png │ ├── rgb-8-sRGB.png │ ├── rgb-8-tRNS.png │ ├── rgb-8.png │ ├── rgb-alpha-16-1.8.png │ ├── rgb-alpha-16-linear.png │ ├── rgb-alpha-16-sRGB.png │ ├── rgb-alpha-16.png │ ├── rgb-alpha-8-1.8.png │ ├── rgb-alpha-8-linear.png │ ├── rgb-alpha-8-sRGB.png │ └── rgb-alpha-8.png ├── tools │ ├── README.txt │ ├── checksum-icc.c │ ├── cvtcolor.c │ ├── genpng.c │ ├── intgamma.sh │ ├── makesRGB.c │ ├── png-fix-itxt.c │ ├── pngcp.c │ ├── pngfix.c │ └── sRGB.h └── visupng │ ├── .editorconfig │ ├── PngFile.c │ ├── PngFile.h │ ├── README.txt │ ├── VisualPng.c │ ├── VisualPng.dsp │ ├── VisualPng.dsw │ ├── VisualPng.ico │ ├── VisualPng.png │ ├── VisualPng.rc │ ├── cexcept.h │ └── resource.h ├── depcomp ├── example.c ├── install-sh ├── intel ├── filter_sse2_intrinsics.c └── intel_init.c ├── libpng-config.in ├── libpng-manual.txt ├── libpng.3 ├── libpng.pc.in ├── libpngpf.3 ├── loongarch ├── .editorconfig ├── filter_lsx_intrinsics.c └── loongarch_lsx_init.c ├── ltmain.sh ├── mips ├── .editorconfig ├── filter_mmi_inline_assembly.c ├── filter_msa_intrinsics.c └── mips_init.c ├── missing ├── png.5 ├── png.c ├── png.h ├── pngbar.jpg ├── pngbar.png ├── pngconf.h ├── pngdebug.h ├── pngerror.c ├── pngget.c ├── pnginfo.h ├── pngmem.c ├── pngnow.png ├── pngpread.c ├── pngpriv.h ├── pngread.c ├── pngrio.c ├── pngrtran.c ├── pngrutil.c ├── pngset.c ├── pngstruct.h ├── pngtest.c ├── pngtest.png ├── pngtrans.c ├── pngusr.dfa ├── pngwio.c ├── pngwrite.c ├── pngwtran.c ├── pngwutil.c ├── powerpc ├── .editorconfig ├── filter_vsx_intrinsics.c └── powerpc_init.c ├── projects ├── .editorconfig ├── owatcom │ ├── libpng.tgt │ ├── libpng.wpj │ ├── pngconfig.mak │ ├── pngstest.tgt │ ├── pngtest.tgt │ └── pngvalid.tgt ├── visualc71 │ ├── PRJ0041.mak │ ├── README.txt │ ├── README_zlib.txt │ ├── libpng.sln │ ├── libpng.vcproj │ ├── pngtest.vcproj │ └── zlib.vcproj └── vstudio │ ├── README.txt │ ├── build.bat │ ├── libpng │ └── libpng.vcxproj │ ├── pnglibconf │ └── pnglibconf.vcxproj │ ├── vstudio.sln │ ├── zlib.props │ └── zlib │ └── zlib.vcxproj ├── riscv ├── .editorconfig ├── filter_rvv_intrinsics.c └── riscv_init.c ├── scripts ├── README.txt ├── SCOPTIONS.ppc ├── autoconf │ ├── README.md │ ├── libtool.m4 │ ├── ltoptions.m4 │ ├── ltsugar.m4 │ ├── ltversion.m4 │ └── lt~obsolete.m4 ├── checksym.awk ├── cmake │ ├── AUTHORS.md │ ├── PNGCheckLibconf.cmake │ ├── PNGConfig.cmake │ ├── PNGGenConfig.cmake │ ├── PNGTest.cmake │ ├── README.md │ ├── genchk.cmake.in │ ├── genout.cmake.in │ ├── gensrc.cmake.in │ └── test.cmake.in ├── descrip.mms ├── dfn.awk ├── intprefix.c ├── libpng-config-body.in ├── libpng-config-head.in ├── libpng.pc.in ├── macro.lst ├── makefile.32sunu ├── makefile.64sunu ├── makefile.aix ├── makefile.amiga ├── makefile.atari ├── makefile.bc32 ├── makefile.beos ├── makefile.c89 ├── makefile.clang ├── makefile.darwin ├── makefile.dec ├── makefile.dj2 ├── makefile.emcc ├── makefile.freebsd ├── makefile.gcc ├── makefile.hp64 ├── makefile.hpgcc ├── makefile.hpux ├── makefile.ibmc ├── makefile.intel ├── makefile.linux ├── makefile.mips ├── makefile.msys ├── makefile.netbsd ├── makefile.openbsd ├── makefile.riscos ├── makefile.sco ├── makefile.sggcc ├── makefile.sgi ├── makefile.so9 ├── makefile.solaris ├── makefile.std ├── makefile.sunos ├── makefile.vcwin-arm64 ├── makefile.vcwin32 ├── makevms.com ├── options.awk ├── pnglibconf.dfa ├── pnglibconf.h.prebuilt ├── pnglibconf.mak ├── pngwin.rc ├── prefix.c ├── smakefile.ppc ├── sym.c ├── symbols.c ├── symbols.def └── vers.c ├── test-driver └── tests ├── pngimage-full ├── pngimage-quick ├── pngstest-1.8 ├── pngstest-1.8-alpha ├── pngstest-linear ├── pngstest-linear-alpha ├── pngstest-none ├── pngstest-none-alpha ├── pngstest-sRGB ├── pngstest-sRGB-alpha ├── pngtest-all ├── pngunknown-IDAT ├── pngunknown-discard ├── pngunknown-if-safe ├── pngunknown-sAPI ├── pngunknown-sTER ├── pngunknown-save ├── pngunknown-vpAg ├── pngvalid-gamma-16-to-8 ├── pngvalid-gamma-alpha-mode ├── pngvalid-gamma-background ├── pngvalid-gamma-expand16-alpha-mode ├── pngvalid-gamma-expand16-background ├── pngvalid-gamma-expand16-transform ├── pngvalid-gamma-sbit ├── pngvalid-gamma-threshold ├── pngvalid-gamma-transform ├── pngvalid-progressive-interlace-standard ├── pngvalid-progressive-size ├── pngvalid-progressive-standard ├── pngvalid-standard └── pngvalid-transform /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/README.md -------------------------------------------------------------------------------- /assets/appicon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/assets/appicon.rc -------------------------------------------------------------------------------- /assets/ledit.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/assets/ledit.desktop -------------------------------------------------------------------------------- /assets/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/assets/logo.ico -------------------------------------------------------------------------------- /assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/assets/logo.png -------------------------------------------------------------------------------- /assets/nord-theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/assets/nord-theme.json -------------------------------------------------------------------------------- /assets/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/assets/screenshot.png -------------------------------------------------------------------------------- /assets/screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/assets/screenshot2.png -------------------------------------------------------------------------------- /assets/screenshot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/assets/screenshot3.png -------------------------------------------------------------------------------- /assets/tokyo-night.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/assets/tokyo-night.json -------------------------------------------------------------------------------- /init.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | git submodule update --init 3 | -------------------------------------------------------------------------------- /language-syntaxes/cmake.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/language-syntaxes/cmake.json -------------------------------------------------------------------------------- /language-syntaxes/markdown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/language-syntaxes/markdown.json -------------------------------------------------------------------------------- /language-syntaxes/rust.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/language-syntaxes/rust.json -------------------------------------------------------------------------------- /language-syntaxes/sql.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/language-syntaxes/sql.json -------------------------------------------------------------------------------- /language-syntaxes/typst.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/language-syntaxes/typst.json -------------------------------------------------------------------------------- /shaders/camera.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/shaders/camera.vert -------------------------------------------------------------------------------- /shaders/cursor.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/shaders/cursor.frag -------------------------------------------------------------------------------- /shaders/cursor.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/shaders/cursor.vert -------------------------------------------------------------------------------- /shaders/simple.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/shaders/simple.fs -------------------------------------------------------------------------------- /shaders/simple.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/shaders/simple.vs -------------------------------------------------------------------------------- /src/accent.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/src/accent.cc -------------------------------------------------------------------------------- /src/accent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/src/accent.h -------------------------------------------------------------------------------- /src/cursor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/src/cursor.cc -------------------------------------------------------------------------------- /src/cursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/src/cursor.h -------------------------------------------------------------------------------- /src/font_atlas.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/src/font_atlas.cc -------------------------------------------------------------------------------- /src/font_atlas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/src/font_atlas.h -------------------------------------------------------------------------------- /src/glad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/src/glad.c -------------------------------------------------------------------------------- /src/glad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/src/glad.h -------------------------------------------------------------------------------- /src/highlighting.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/src/highlighting.cc -------------------------------------------------------------------------------- /src/highlighting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/src/highlighting.h -------------------------------------------------------------------------------- /src/khrplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/src/khrplatform.h -------------------------------------------------------------------------------- /src/la.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/src/la.cc -------------------------------------------------------------------------------- /src/la.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/src/la.h -------------------------------------------------------------------------------- /src/languages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/src/languages.h -------------------------------------------------------------------------------- /src/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/src/main.cc -------------------------------------------------------------------------------- /src/providers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/src/providers.cc -------------------------------------------------------------------------------- /src/providers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/src/providers.h -------------------------------------------------------------------------------- /src/selection.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/src/selection.cc -------------------------------------------------------------------------------- /src/selection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/src/selection.h -------------------------------------------------------------------------------- /src/shader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/src/shader.cc -------------------------------------------------------------------------------- /src/shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/src/shader.h -------------------------------------------------------------------------------- /src/shaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/src/shaders.h -------------------------------------------------------------------------------- /src/state.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/src/state.cc -------------------------------------------------------------------------------- /src/state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/src/state.h -------------------------------------------------------------------------------- /src/u8String.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/src/u8String.h -------------------------------------------------------------------------------- /src/utf8String.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/src/utf8String.cc -------------------------------------------------------------------------------- /src/utf8String.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/src/utf8String.h -------------------------------------------------------------------------------- /src/utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/src/utils.cc -------------------------------------------------------------------------------- /src/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/src/utils.h -------------------------------------------------------------------------------- /src/vim.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/src/vim.cc -------------------------------------------------------------------------------- /src/vim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/src/vim.h -------------------------------------------------------------------------------- /src/vim_actions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/src/vim_actions.h -------------------------------------------------------------------------------- /src/vim_actions/AAAction.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/src/vim_actions/AAAction.cc -------------------------------------------------------------------------------- /src/vim_actions/AAction.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/src/vim_actions/AAction.cc -------------------------------------------------------------------------------- /src/vim_actions/BAction.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/src/vim_actions/BAction.cc -------------------------------------------------------------------------------- /src/vim_actions/BackspaceAction.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/src/vim_actions/BackspaceAction.cc -------------------------------------------------------------------------------- /src/vim_actions/BracketAction.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/src/vim_actions/BracketAction.cc -------------------------------------------------------------------------------- /src/vim_actions/CAction.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/src/vim_actions/CAction.cc -------------------------------------------------------------------------------- /src/vim_actions/CCAction.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/src/vim_actions/CCAction.cc -------------------------------------------------------------------------------- /src/vim_actions/ColonAction.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/src/vim_actions/ColonAction.cc -------------------------------------------------------------------------------- /src/vim_actions/CommaAction.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/src/vim_actions/CommaAction.cc -------------------------------------------------------------------------------- /src/vim_actions/CommentAction.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/src/vim_actions/CommentAction.cc -------------------------------------------------------------------------------- /src/vim_actions/CtrlUAction.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/src/vim_actions/CtrlUAction.cc -------------------------------------------------------------------------------- /src/vim_actions/DAction.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/src/vim_actions/DAction.cc -------------------------------------------------------------------------------- /src/vim_actions/DDAction.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/src/vim_actions/DDAction.cc -------------------------------------------------------------------------------- /src/vim_actions/DollarAction.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/src/vim_actions/DollarAction.cc -------------------------------------------------------------------------------- /src/vim_actions/EAction.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/src/vim_actions/EAction.cc -------------------------------------------------------------------------------- /src/vim_actions/EnterAction.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/src/vim_actions/EnterAction.cc -------------------------------------------------------------------------------- /src/vim_actions/EscapeAction.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/src/vim_actions/EscapeAction.cc -------------------------------------------------------------------------------- /src/vim_actions/FindAction.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/src/vim_actions/FindAction.cc -------------------------------------------------------------------------------- /src/vim_actions/Finder.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/src/vim_actions/Finder.cc -------------------------------------------------------------------------------- /src/vim_actions/FontSizeAction.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/src/vim_actions/FontSizeAction.cc -------------------------------------------------------------------------------- /src/vim_actions/GAction.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/src/vim_actions/GAction.cc -------------------------------------------------------------------------------- /src/vim_actions/GGAction.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/src/vim_actions/GGAction.cc -------------------------------------------------------------------------------- /src/vim_actions/HAction.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/src/vim_actions/HAction.cc -------------------------------------------------------------------------------- /src/vim_actions/IAction.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/src/vim_actions/IAction.cc -------------------------------------------------------------------------------- /src/vim_actions/IIAction.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/src/vim_actions/IIAction.cc -------------------------------------------------------------------------------- /src/vim_actions/IndentAction.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/src/vim_actions/IndentAction.cc -------------------------------------------------------------------------------- /src/vim_actions/JAction.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/src/vim_actions/JAction.cc -------------------------------------------------------------------------------- /src/vim_actions/KAction.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/src/vim_actions/KAction.cc -------------------------------------------------------------------------------- /src/vim_actions/LAction.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/src/vim_actions/LAction.cc -------------------------------------------------------------------------------- /src/vim_actions/MoveAction.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/src/vim_actions/MoveAction.cc -------------------------------------------------------------------------------- /src/vim_actions/OAction.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/src/vim_actions/OAction.cc -------------------------------------------------------------------------------- /src/vim_actions/OOAction.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/src/vim_actions/OOAction.cc -------------------------------------------------------------------------------- /src/vim_actions/PAction.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/src/vim_actions/PAction.cc -------------------------------------------------------------------------------- /src/vim_actions/ParagraphAction.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/src/vim_actions/ParagraphAction.cc -------------------------------------------------------------------------------- /src/vim_actions/ParenAction.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/src/vim_actions/ParenAction.cc -------------------------------------------------------------------------------- /src/vim_actions/PercentAction.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/src/vim_actions/PercentAction.cc -------------------------------------------------------------------------------- /src/vim_actions/QuoteAction.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/src/vim_actions/QuoteAction.cc -------------------------------------------------------------------------------- /src/vim_actions/RAction.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/src/vim_actions/RAction.cc -------------------------------------------------------------------------------- /src/vim_actions/SemicolonAction.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/src/vim_actions/SemicolonAction.cc -------------------------------------------------------------------------------- /src/vim_actions/SimpleCopy.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/src/vim_actions/SimpleCopy.cc -------------------------------------------------------------------------------- /src/vim_actions/SlashAction.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/src/vim_actions/SlashAction.cc -------------------------------------------------------------------------------- /src/vim_actions/TabAction.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/src/vim_actions/TabAction.cc -------------------------------------------------------------------------------- /src/vim_actions/UAction.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/src/vim_actions/UAction.cc -------------------------------------------------------------------------------- /src/vim_actions/VAction.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/src/vim_actions/VAction.cc -------------------------------------------------------------------------------- /src/vim_actions/WAction.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/src/vim_actions/WAction.cc -------------------------------------------------------------------------------- /src/vim_actions/XAction.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/src/vim_actions/XAction.cc -------------------------------------------------------------------------------- /src/vim_actions/YAction.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/src/vim_actions/YAction.cc -------------------------------------------------------------------------------- /src/vim_actions/ZeroAction.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/src/vim_actions/ZeroAction.cc -------------------------------------------------------------------------------- /src/vim_actions/register.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/src/vim_actions/register.cc -------------------------------------------------------------------------------- /src/win32_icon_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/src/win32_icon_utils.h -------------------------------------------------------------------------------- /src/windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/src/windows.h -------------------------------------------------------------------------------- /third-party/freetype2/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/.clang-format -------------------------------------------------------------------------------- /third-party/freetype2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/CMakeLists.txt -------------------------------------------------------------------------------- /third-party/freetype2/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/ChangeLog -------------------------------------------------------------------------------- /third-party/freetype2/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/LICENSE.TXT -------------------------------------------------------------------------------- /third-party/freetype2/MSBuild.rsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/MSBuild.rsp -------------------------------------------------------------------------------- /third-party/freetype2/MSBuild.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/MSBuild.sln -------------------------------------------------------------------------------- /third-party/freetype2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/Makefile -------------------------------------------------------------------------------- /third-party/freetype2/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/README -------------------------------------------------------------------------------- /third-party/freetype2/README.git: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/README.git -------------------------------------------------------------------------------- /third-party/freetype2/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/autogen.sh -------------------------------------------------------------------------------- /third-party/freetype2/builds/amiga/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/builds/amiga/README -------------------------------------------------------------------------------- /third-party/freetype2/builds/amiga/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/builds/amiga/makefile -------------------------------------------------------------------------------- /third-party/freetype2/builds/amiga/smakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/builds/amiga/smakefile -------------------------------------------------------------------------------- /third-party/freetype2/builds/ansi/ansi-def.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/builds/ansi/ansi-def.mk -------------------------------------------------------------------------------- /third-party/freetype2/builds/ansi/ansi.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/builds/ansi/ansi.mk -------------------------------------------------------------------------------- /third-party/freetype2/builds/atari/ATARI.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/builds/atari/ATARI.H -------------------------------------------------------------------------------- /third-party/freetype2/builds/atari/FNames.SIC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/builds/atari/FNames.SIC -------------------------------------------------------------------------------- /third-party/freetype2/builds/atari/README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/builds/atari/README.TXT -------------------------------------------------------------------------------- /third-party/freetype2/builds/beos/beos-def.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/builds/beos/beos-def.mk -------------------------------------------------------------------------------- /third-party/freetype2/builds/beos/beos.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/builds/beos/beos.mk -------------------------------------------------------------------------------- /third-party/freetype2/builds/beos/detect.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/builds/beos/detect.mk -------------------------------------------------------------------------------- /third-party/freetype2/builds/cmake/iOS.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/builds/cmake/iOS.cmake -------------------------------------------------------------------------------- /third-party/freetype2/builds/compiler/bcc.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/builds/compiler/bcc.mk -------------------------------------------------------------------------------- /third-party/freetype2/builds/compiler/emx.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/builds/compiler/emx.mk -------------------------------------------------------------------------------- /third-party/freetype2/builds/compiler/gcc.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/builds/compiler/gcc.mk -------------------------------------------------------------------------------- /third-party/freetype2/builds/detect.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/builds/detect.mk -------------------------------------------------------------------------------- /third-party/freetype2/builds/dos/detect.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/builds/dos/detect.mk -------------------------------------------------------------------------------- /third-party/freetype2/builds/dos/dos-def.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/builds/dos/dos-def.mk -------------------------------------------------------------------------------- /third-party/freetype2/builds/dos/dos-emx.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/builds/dos/dos-emx.mk -------------------------------------------------------------------------------- /third-party/freetype2/builds/dos/dos-gcc.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/builds/dos/dos-gcc.mk -------------------------------------------------------------------------------- /third-party/freetype2/builds/dos/dos-wat.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/builds/dos/dos-wat.mk -------------------------------------------------------------------------------- /third-party/freetype2/builds/exports.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/builds/exports.mk -------------------------------------------------------------------------------- /third-party/freetype2/builds/freetype.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/builds/freetype.mk -------------------------------------------------------------------------------- /third-party/freetype2/builds/link_dos.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/builds/link_dos.mk -------------------------------------------------------------------------------- /third-party/freetype2/builds/link_std.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/builds/link_std.mk -------------------------------------------------------------------------------- /third-party/freetype2/builds/mac/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/builds/mac/README -------------------------------------------------------------------------------- /third-party/freetype2/builds/mac/ascii2mpw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/builds/mac/ascii2mpw.py -------------------------------------------------------------------------------- /third-party/freetype2/builds/mac/ftlib.prj.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/builds/mac/ftlib.prj.xml -------------------------------------------------------------------------------- /third-party/freetype2/builds/mac/ftmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/builds/mac/ftmac.c -------------------------------------------------------------------------------- /third-party/freetype2/builds/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/builds/modules.mk -------------------------------------------------------------------------------- /third-party/freetype2/builds/os2/detect.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/builds/os2/detect.mk -------------------------------------------------------------------------------- /third-party/freetype2/builds/os2/os2-def.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/builds/os2/os2-def.mk -------------------------------------------------------------------------------- /third-party/freetype2/builds/os2/os2-dev.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/builds/os2/os2-dev.mk -------------------------------------------------------------------------------- /third-party/freetype2/builds/os2/os2-gcc.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/builds/os2/os2-gcc.mk -------------------------------------------------------------------------------- /third-party/freetype2/builds/symbian/bld.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/builds/symbian/bld.inf -------------------------------------------------------------------------------- /third-party/freetype2/builds/toplevel.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/builds/toplevel.mk -------------------------------------------------------------------------------- /third-party/freetype2/builds/unix/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/builds/unix/aclocal.m4 -------------------------------------------------------------------------------- /third-party/freetype2/builds/unix/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/builds/unix/config.guess -------------------------------------------------------------------------------- /third-party/freetype2/builds/unix/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/builds/unix/config.sub -------------------------------------------------------------------------------- /third-party/freetype2/builds/unix/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/builds/unix/configure -------------------------------------------------------------------------------- /third-party/freetype2/builds/unix/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/builds/unix/configure.ac -------------------------------------------------------------------------------- /third-party/freetype2/builds/unix/detect.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/builds/unix/detect.mk -------------------------------------------------------------------------------- /third-party/freetype2/builds/unix/freetype2.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/builds/unix/freetype2.in -------------------------------------------------------------------------------- /third-party/freetype2/builds/unix/freetype2.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/builds/unix/freetype2.m4 -------------------------------------------------------------------------------- /third-party/freetype2/builds/unix/ft-munmap.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/builds/unix/ft-munmap.m4 -------------------------------------------------------------------------------- /third-party/freetype2/builds/unix/ftsystem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/builds/unix/ftsystem.c -------------------------------------------------------------------------------- /third-party/freetype2/builds/unix/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/builds/unix/install-sh -------------------------------------------------------------------------------- /third-party/freetype2/builds/unix/install.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/builds/unix/install.mk -------------------------------------------------------------------------------- /third-party/freetype2/builds/unix/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/builds/unix/ltmain.sh -------------------------------------------------------------------------------- /third-party/freetype2/builds/unix/pkg.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/builds/unix/pkg.m4 -------------------------------------------------------------------------------- /third-party/freetype2/builds/unix/unix-cc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/builds/unix/unix-cc.in -------------------------------------------------------------------------------- /third-party/freetype2/builds/unix/unix-def.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/builds/unix/unix-def.in -------------------------------------------------------------------------------- /third-party/freetype2/builds/unix/unix-dev.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/builds/unix/unix-dev.mk -------------------------------------------------------------------------------- /third-party/freetype2/builds/unix/unix-lcc.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/builds/unix/unix-lcc.mk -------------------------------------------------------------------------------- /third-party/freetype2/builds/unix/unix.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/builds/unix/unix.mk -------------------------------------------------------------------------------- /third-party/freetype2/builds/unix/unixddef.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/builds/unix/unixddef.mk -------------------------------------------------------------------------------- /third-party/freetype2/builds/vms/ftconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/builds/vms/ftconfig.h -------------------------------------------------------------------------------- /third-party/freetype2/builds/vms/ftsystem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/builds/vms/ftsystem.c -------------------------------------------------------------------------------- /third-party/freetype2/builds/wince/ftdebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/builds/wince/ftdebug.c -------------------------------------------------------------------------------- /third-party/freetype2/builds/windows/detect.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/builds/windows/detect.mk -------------------------------------------------------------------------------- /third-party/freetype2/builds/windows/ftdebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/builds/windows/ftdebug.c -------------------------------------------------------------------------------- /third-party/freetype2/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/configure -------------------------------------------------------------------------------- /third-party/freetype2/devel/ft2build.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/devel/ft2build.h -------------------------------------------------------------------------------- /third-party/freetype2/devel/ftoption.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/devel/ftoption.h -------------------------------------------------------------------------------- /third-party/freetype2/docs/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/docs/CHANGES -------------------------------------------------------------------------------- /third-party/freetype2/docs/CMAKE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/docs/CMAKE -------------------------------------------------------------------------------- /third-party/freetype2/docs/CUSTOMIZE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/docs/CUSTOMIZE -------------------------------------------------------------------------------- /third-party/freetype2/docs/DEBUG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/docs/DEBUG -------------------------------------------------------------------------------- /third-party/freetype2/docs/DOCGUIDE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/docs/DOCGUIDE -------------------------------------------------------------------------------- /third-party/freetype2/docs/FTL.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/docs/FTL.TXT -------------------------------------------------------------------------------- /third-party/freetype2/docs/GPLv2.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/docs/GPLv2.TXT -------------------------------------------------------------------------------- /third-party/freetype2/docs/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/docs/INSTALL -------------------------------------------------------------------------------- /third-party/freetype2/docs/INSTALL.ANY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/docs/INSTALL.ANY -------------------------------------------------------------------------------- /third-party/freetype2/docs/INSTALL.CROSS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/docs/INSTALL.CROSS -------------------------------------------------------------------------------- /third-party/freetype2/docs/INSTALL.GNU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/docs/INSTALL.GNU -------------------------------------------------------------------------------- /third-party/freetype2/docs/INSTALL.MAC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/docs/INSTALL.MAC -------------------------------------------------------------------------------- /third-party/freetype2/docs/INSTALL.UNIX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/docs/INSTALL.UNIX -------------------------------------------------------------------------------- /third-party/freetype2/docs/INSTALL.VMS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/docs/INSTALL.VMS -------------------------------------------------------------------------------- /third-party/freetype2/docs/MAKEPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/docs/MAKEPP -------------------------------------------------------------------------------- /third-party/freetype2/docs/PROBLEMS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/docs/PROBLEMS -------------------------------------------------------------------------------- /third-party/freetype2/docs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/docs/README -------------------------------------------------------------------------------- /third-party/freetype2/docs/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/docs/TODO -------------------------------------------------------------------------------- /third-party/freetype2/docs/VERSIONS.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/docs/VERSIONS.TXT -------------------------------------------------------------------------------- /third-party/freetype2/docs/formats.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/docs/formats.txt -------------------------------------------------------------------------------- /third-party/freetype2/docs/freetype-config.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/docs/freetype-config.1 -------------------------------------------------------------------------------- /third-party/freetype2/docs/freetype-web.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/docs/freetype-web.txt -------------------------------------------------------------------------------- /third-party/freetype2/docs/raster.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/docs/raster.txt -------------------------------------------------------------------------------- /third-party/freetype2/docs/reference/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/docs/reference/404.html -------------------------------------------------------------------------------- /third-party/freetype2/docs/reference/assets/javascripts/lunr/min/lunr.jp.min.js: -------------------------------------------------------------------------------- 1 | module.exports=require("./lunr.ja"); -------------------------------------------------------------------------------- /third-party/freetype2/include/dlg/dlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/include/dlg/dlg.h -------------------------------------------------------------------------------- /third-party/freetype2/include/dlg/output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/include/dlg/output.h -------------------------------------------------------------------------------- /third-party/freetype2/include/freetype/ftbdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/include/freetype/ftbdf.h -------------------------------------------------------------------------------- /third-party/freetype2/include/freetype/ftcid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/include/freetype/ftcid.h -------------------------------------------------------------------------------- /third-party/freetype2/include/freetype/ftlzw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/include/freetype/ftlzw.h -------------------------------------------------------------------------------- /third-party/freetype2/include/freetype/ftmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/include/freetype/ftmac.h -------------------------------------------------------------------------------- /third-party/freetype2/include/freetype/ftmm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/include/freetype/ftmm.h -------------------------------------------------------------------------------- /third-party/freetype2/include/freetype/ftpfr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/include/freetype/ftpfr.h -------------------------------------------------------------------------------- /third-party/freetype2/include/freetype/otsvg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/include/freetype/otsvg.h -------------------------------------------------------------------------------- /third-party/freetype2/include/ft2build.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/include/ft2build.h -------------------------------------------------------------------------------- /third-party/freetype2/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/meson.build -------------------------------------------------------------------------------- /third-party/freetype2/meson_options.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/meson_options.txt -------------------------------------------------------------------------------- /third-party/freetype2/modules.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/modules.cfg -------------------------------------------------------------------------------- /third-party/freetype2/objs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/objs/README -------------------------------------------------------------------------------- /third-party/freetype2/src/autofit/afblue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/autofit/afblue.c -------------------------------------------------------------------------------- /third-party/freetype2/src/autofit/afblue.cin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/autofit/afblue.cin -------------------------------------------------------------------------------- /third-party/freetype2/src/autofit/afblue.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/autofit/afblue.dat -------------------------------------------------------------------------------- /third-party/freetype2/src/autofit/afblue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/autofit/afblue.h -------------------------------------------------------------------------------- /third-party/freetype2/src/autofit/afblue.hin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/autofit/afblue.hin -------------------------------------------------------------------------------- /third-party/freetype2/src/autofit/afcjk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/autofit/afcjk.c -------------------------------------------------------------------------------- /third-party/freetype2/src/autofit/afcjk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/autofit/afcjk.h -------------------------------------------------------------------------------- /third-party/freetype2/src/autofit/afcover.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/autofit/afcover.h -------------------------------------------------------------------------------- /third-party/freetype2/src/autofit/afdummy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/autofit/afdummy.c -------------------------------------------------------------------------------- /third-party/freetype2/src/autofit/afdummy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/autofit/afdummy.h -------------------------------------------------------------------------------- /third-party/freetype2/src/autofit/aferrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/autofit/aferrors.h -------------------------------------------------------------------------------- /third-party/freetype2/src/autofit/afglobal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/autofit/afglobal.c -------------------------------------------------------------------------------- /third-party/freetype2/src/autofit/afglobal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/autofit/afglobal.h -------------------------------------------------------------------------------- /third-party/freetype2/src/autofit/afhints.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/autofit/afhints.c -------------------------------------------------------------------------------- /third-party/freetype2/src/autofit/afhints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/autofit/afhints.h -------------------------------------------------------------------------------- /third-party/freetype2/src/autofit/afindic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/autofit/afindic.c -------------------------------------------------------------------------------- /third-party/freetype2/src/autofit/afindic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/autofit/afindic.h -------------------------------------------------------------------------------- /third-party/freetype2/src/autofit/aflatin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/autofit/aflatin.c -------------------------------------------------------------------------------- /third-party/freetype2/src/autofit/aflatin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/autofit/aflatin.h -------------------------------------------------------------------------------- /third-party/freetype2/src/autofit/afloader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/autofit/afloader.c -------------------------------------------------------------------------------- /third-party/freetype2/src/autofit/afloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/autofit/afloader.h -------------------------------------------------------------------------------- /third-party/freetype2/src/autofit/afmodule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/autofit/afmodule.c -------------------------------------------------------------------------------- /third-party/freetype2/src/autofit/afmodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/autofit/afmodule.h -------------------------------------------------------------------------------- /third-party/freetype2/src/autofit/afranges.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/autofit/afranges.c -------------------------------------------------------------------------------- /third-party/freetype2/src/autofit/afranges.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/autofit/afranges.h -------------------------------------------------------------------------------- /third-party/freetype2/src/autofit/afscript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/autofit/afscript.h -------------------------------------------------------------------------------- /third-party/freetype2/src/autofit/afshaper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/autofit/afshaper.c -------------------------------------------------------------------------------- /third-party/freetype2/src/autofit/afshaper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/autofit/afshaper.h -------------------------------------------------------------------------------- /third-party/freetype2/src/autofit/afstyles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/autofit/afstyles.h -------------------------------------------------------------------------------- /third-party/freetype2/src/autofit/aftypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/autofit/aftypes.h -------------------------------------------------------------------------------- /third-party/freetype2/src/autofit/afws-decl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/autofit/afws-decl.h -------------------------------------------------------------------------------- /third-party/freetype2/src/autofit/afws-iter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/autofit/afws-iter.h -------------------------------------------------------------------------------- /third-party/freetype2/src/autofit/autofit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/autofit/autofit.c -------------------------------------------------------------------------------- /third-party/freetype2/src/autofit/ft-hb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/autofit/ft-hb.c -------------------------------------------------------------------------------- /third-party/freetype2/src/autofit/ft-hb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/autofit/ft-hb.h -------------------------------------------------------------------------------- /third-party/freetype2/src/autofit/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/autofit/module.mk -------------------------------------------------------------------------------- /third-party/freetype2/src/autofit/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/autofit/rules.mk -------------------------------------------------------------------------------- /third-party/freetype2/src/base/ftadvanc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/base/ftadvanc.c -------------------------------------------------------------------------------- /third-party/freetype2/src/base/ftbase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/base/ftbase.c -------------------------------------------------------------------------------- /third-party/freetype2/src/base/ftbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/base/ftbase.h -------------------------------------------------------------------------------- /third-party/freetype2/src/base/ftbbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/base/ftbbox.c -------------------------------------------------------------------------------- /third-party/freetype2/src/base/ftbdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/base/ftbdf.c -------------------------------------------------------------------------------- /third-party/freetype2/src/base/ftbitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/base/ftbitmap.c -------------------------------------------------------------------------------- /third-party/freetype2/src/base/ftcalc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/base/ftcalc.c -------------------------------------------------------------------------------- /third-party/freetype2/src/base/ftcid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/base/ftcid.c -------------------------------------------------------------------------------- /third-party/freetype2/src/base/ftcolor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/base/ftcolor.c -------------------------------------------------------------------------------- /third-party/freetype2/src/base/ftdbgmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/base/ftdbgmem.c -------------------------------------------------------------------------------- /third-party/freetype2/src/base/ftdebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/base/ftdebug.c -------------------------------------------------------------------------------- /third-party/freetype2/src/base/fterrors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/base/fterrors.c -------------------------------------------------------------------------------- /third-party/freetype2/src/base/ftfntfmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/base/ftfntfmt.c -------------------------------------------------------------------------------- /third-party/freetype2/src/base/ftfstype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/base/ftfstype.c -------------------------------------------------------------------------------- /third-party/freetype2/src/base/ftgasp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/base/ftgasp.c -------------------------------------------------------------------------------- /third-party/freetype2/src/base/ftgloadr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/base/ftgloadr.c -------------------------------------------------------------------------------- /third-party/freetype2/src/base/ftglyph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/base/ftglyph.c -------------------------------------------------------------------------------- /third-party/freetype2/src/base/ftgxval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/base/ftgxval.c -------------------------------------------------------------------------------- /third-party/freetype2/src/base/fthash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/base/fthash.c -------------------------------------------------------------------------------- /third-party/freetype2/src/base/ftinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/base/ftinit.c -------------------------------------------------------------------------------- /third-party/freetype2/src/base/ftlcdfil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/base/ftlcdfil.c -------------------------------------------------------------------------------- /third-party/freetype2/src/base/ftmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/base/ftmac.c -------------------------------------------------------------------------------- /third-party/freetype2/src/base/ftmm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/base/ftmm.c -------------------------------------------------------------------------------- /third-party/freetype2/src/base/ftobjs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/base/ftobjs.c -------------------------------------------------------------------------------- /third-party/freetype2/src/base/ftotval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/base/ftotval.c -------------------------------------------------------------------------------- /third-party/freetype2/src/base/ftoutln.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/base/ftoutln.c -------------------------------------------------------------------------------- /third-party/freetype2/src/base/ftpatent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/base/ftpatent.c -------------------------------------------------------------------------------- /third-party/freetype2/src/base/ftpfr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/base/ftpfr.c -------------------------------------------------------------------------------- /third-party/freetype2/src/base/ftpsprop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/base/ftpsprop.c -------------------------------------------------------------------------------- /third-party/freetype2/src/base/ftrfork.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/base/ftrfork.c -------------------------------------------------------------------------------- /third-party/freetype2/src/base/ftsnames.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/base/ftsnames.c -------------------------------------------------------------------------------- /third-party/freetype2/src/base/ftstream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/base/ftstream.c -------------------------------------------------------------------------------- /third-party/freetype2/src/base/ftstroke.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/base/ftstroke.c -------------------------------------------------------------------------------- /third-party/freetype2/src/base/ftsynth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/base/ftsynth.c -------------------------------------------------------------------------------- /third-party/freetype2/src/base/ftsystem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/base/ftsystem.c -------------------------------------------------------------------------------- /third-party/freetype2/src/base/fttrigon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/base/fttrigon.c -------------------------------------------------------------------------------- /third-party/freetype2/src/base/fttype1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/base/fttype1.c -------------------------------------------------------------------------------- /third-party/freetype2/src/base/ftutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/base/ftutil.c -------------------------------------------------------------------------------- /third-party/freetype2/src/base/ftver.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/base/ftver.rc -------------------------------------------------------------------------------- /third-party/freetype2/src/base/ftwinfnt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/base/ftwinfnt.c -------------------------------------------------------------------------------- /third-party/freetype2/src/base/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/base/md5.c -------------------------------------------------------------------------------- /third-party/freetype2/src/base/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/base/md5.h -------------------------------------------------------------------------------- /third-party/freetype2/src/base/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/base/rules.mk -------------------------------------------------------------------------------- /third-party/freetype2/src/bdf/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/bdf/README -------------------------------------------------------------------------------- /third-party/freetype2/src/bdf/bdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/bdf/bdf.c -------------------------------------------------------------------------------- /third-party/freetype2/src/bdf/bdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/bdf/bdf.h -------------------------------------------------------------------------------- /third-party/freetype2/src/bdf/bdfdrivr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/bdf/bdfdrivr.c -------------------------------------------------------------------------------- /third-party/freetype2/src/bdf/bdfdrivr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/bdf/bdfdrivr.h -------------------------------------------------------------------------------- /third-party/freetype2/src/bdf/bdferror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/bdf/bdferror.h -------------------------------------------------------------------------------- /third-party/freetype2/src/bdf/bdflib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/bdf/bdflib.c -------------------------------------------------------------------------------- /third-party/freetype2/src/bdf/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/bdf/module.mk -------------------------------------------------------------------------------- /third-party/freetype2/src/bdf/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/bdf/rules.mk -------------------------------------------------------------------------------- /third-party/freetype2/src/bzip2/ftbzip2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/bzip2/ftbzip2.c -------------------------------------------------------------------------------- /third-party/freetype2/src/bzip2/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/bzip2/rules.mk -------------------------------------------------------------------------------- /third-party/freetype2/src/cache/ftcache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/cache/ftcache.c -------------------------------------------------------------------------------- /third-party/freetype2/src/cache/ftcbasic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/cache/ftcbasic.c -------------------------------------------------------------------------------- /third-party/freetype2/src/cache/ftccache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/cache/ftccache.c -------------------------------------------------------------------------------- /third-party/freetype2/src/cache/ftccache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/cache/ftccache.h -------------------------------------------------------------------------------- /third-party/freetype2/src/cache/ftccback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/cache/ftccback.h -------------------------------------------------------------------------------- /third-party/freetype2/src/cache/ftccmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/cache/ftccmap.c -------------------------------------------------------------------------------- /third-party/freetype2/src/cache/ftcerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/cache/ftcerror.h -------------------------------------------------------------------------------- /third-party/freetype2/src/cache/ftcglyph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/cache/ftcglyph.c -------------------------------------------------------------------------------- /third-party/freetype2/src/cache/ftcglyph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/cache/ftcglyph.h -------------------------------------------------------------------------------- /third-party/freetype2/src/cache/ftcimage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/cache/ftcimage.c -------------------------------------------------------------------------------- /third-party/freetype2/src/cache/ftcimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/cache/ftcimage.h -------------------------------------------------------------------------------- /third-party/freetype2/src/cache/ftcmanag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/cache/ftcmanag.c -------------------------------------------------------------------------------- /third-party/freetype2/src/cache/ftcmanag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/cache/ftcmanag.h -------------------------------------------------------------------------------- /third-party/freetype2/src/cache/ftcmru.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/cache/ftcmru.c -------------------------------------------------------------------------------- /third-party/freetype2/src/cache/ftcmru.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/cache/ftcmru.h -------------------------------------------------------------------------------- /third-party/freetype2/src/cache/ftcsbits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/cache/ftcsbits.c -------------------------------------------------------------------------------- /third-party/freetype2/src/cache/ftcsbits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/cache/ftcsbits.h -------------------------------------------------------------------------------- /third-party/freetype2/src/cache/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/cache/rules.mk -------------------------------------------------------------------------------- /third-party/freetype2/src/cff/cff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/cff/cff.c -------------------------------------------------------------------------------- /third-party/freetype2/src/cff/cffcmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/cff/cffcmap.c -------------------------------------------------------------------------------- /third-party/freetype2/src/cff/cffcmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/cff/cffcmap.h -------------------------------------------------------------------------------- /third-party/freetype2/src/cff/cffdrivr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/cff/cffdrivr.c -------------------------------------------------------------------------------- /third-party/freetype2/src/cff/cffdrivr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/cff/cffdrivr.h -------------------------------------------------------------------------------- /third-party/freetype2/src/cff/cfferrs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/cff/cfferrs.h -------------------------------------------------------------------------------- /third-party/freetype2/src/cff/cffgload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/cff/cffgload.c -------------------------------------------------------------------------------- /third-party/freetype2/src/cff/cffgload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/cff/cffgload.h -------------------------------------------------------------------------------- /third-party/freetype2/src/cff/cffload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/cff/cffload.c -------------------------------------------------------------------------------- /third-party/freetype2/src/cff/cffload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/cff/cffload.h -------------------------------------------------------------------------------- /third-party/freetype2/src/cff/cffobjs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/cff/cffobjs.c -------------------------------------------------------------------------------- /third-party/freetype2/src/cff/cffobjs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/cff/cffobjs.h -------------------------------------------------------------------------------- /third-party/freetype2/src/cff/cffparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/cff/cffparse.c -------------------------------------------------------------------------------- /third-party/freetype2/src/cff/cffparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/cff/cffparse.h -------------------------------------------------------------------------------- /third-party/freetype2/src/cff/cfftoken.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/cff/cfftoken.h -------------------------------------------------------------------------------- /third-party/freetype2/src/cff/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/cff/module.mk -------------------------------------------------------------------------------- /third-party/freetype2/src/cff/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/cff/rules.mk -------------------------------------------------------------------------------- /third-party/freetype2/src/cid/ciderrs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/cid/ciderrs.h -------------------------------------------------------------------------------- /third-party/freetype2/src/cid/cidgload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/cid/cidgload.c -------------------------------------------------------------------------------- /third-party/freetype2/src/cid/cidgload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/cid/cidgload.h -------------------------------------------------------------------------------- /third-party/freetype2/src/cid/cidload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/cid/cidload.c -------------------------------------------------------------------------------- /third-party/freetype2/src/cid/cidload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/cid/cidload.h -------------------------------------------------------------------------------- /third-party/freetype2/src/cid/cidobjs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/cid/cidobjs.c -------------------------------------------------------------------------------- /third-party/freetype2/src/cid/cidobjs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/cid/cidobjs.h -------------------------------------------------------------------------------- /third-party/freetype2/src/cid/cidparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/cid/cidparse.c -------------------------------------------------------------------------------- /third-party/freetype2/src/cid/cidparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/cid/cidparse.h -------------------------------------------------------------------------------- /third-party/freetype2/src/cid/cidriver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/cid/cidriver.c -------------------------------------------------------------------------------- /third-party/freetype2/src/cid/cidriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/cid/cidriver.h -------------------------------------------------------------------------------- /third-party/freetype2/src/cid/cidtoken.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/cid/cidtoken.h -------------------------------------------------------------------------------- /third-party/freetype2/src/cid/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/cid/module.mk -------------------------------------------------------------------------------- /third-party/freetype2/src/cid/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/cid/rules.mk -------------------------------------------------------------------------------- /third-party/freetype2/src/cid/type1cid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/cid/type1cid.c -------------------------------------------------------------------------------- /third-party/freetype2/src/dlg/dlg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/dlg/dlg.c -------------------------------------------------------------------------------- /third-party/freetype2/src/dlg/dlgwrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/dlg/dlgwrap.c -------------------------------------------------------------------------------- /third-party/freetype2/src/dlg/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/dlg/rules.mk -------------------------------------------------------------------------------- /third-party/freetype2/src/gxvalid/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/gxvalid/README -------------------------------------------------------------------------------- /third-party/freetype2/src/gxvalid/gxvalid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/gxvalid/gxvalid.c -------------------------------------------------------------------------------- /third-party/freetype2/src/gxvalid/gxvalid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/gxvalid/gxvalid.h -------------------------------------------------------------------------------- /third-party/freetype2/src/gxvalid/gxvbsln.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/gxvalid/gxvbsln.c -------------------------------------------------------------------------------- /third-party/freetype2/src/gxvalid/gxvcommn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/gxvalid/gxvcommn.c -------------------------------------------------------------------------------- /third-party/freetype2/src/gxvalid/gxvcommn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/gxvalid/gxvcommn.h -------------------------------------------------------------------------------- /third-party/freetype2/src/gxvalid/gxverror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/gxvalid/gxverror.h -------------------------------------------------------------------------------- /third-party/freetype2/src/gxvalid/gxvfeat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/gxvalid/gxvfeat.c -------------------------------------------------------------------------------- /third-party/freetype2/src/gxvalid/gxvfeat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/gxvalid/gxvfeat.h -------------------------------------------------------------------------------- /third-party/freetype2/src/gxvalid/gxvfgen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/gxvalid/gxvfgen.c -------------------------------------------------------------------------------- /third-party/freetype2/src/gxvalid/gxvjust.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/gxvalid/gxvjust.c -------------------------------------------------------------------------------- /third-party/freetype2/src/gxvalid/gxvkern.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/gxvalid/gxvkern.c -------------------------------------------------------------------------------- /third-party/freetype2/src/gxvalid/gxvlcar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/gxvalid/gxvlcar.c -------------------------------------------------------------------------------- /third-party/freetype2/src/gxvalid/gxvmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/gxvalid/gxvmod.c -------------------------------------------------------------------------------- /third-party/freetype2/src/gxvalid/gxvmod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/gxvalid/gxvmod.h -------------------------------------------------------------------------------- /third-party/freetype2/src/gxvalid/gxvmort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/gxvalid/gxvmort.c -------------------------------------------------------------------------------- /third-party/freetype2/src/gxvalid/gxvmort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/gxvalid/gxvmort.h -------------------------------------------------------------------------------- /third-party/freetype2/src/gxvalid/gxvmort0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/gxvalid/gxvmort0.c -------------------------------------------------------------------------------- /third-party/freetype2/src/gxvalid/gxvmort1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/gxvalid/gxvmort1.c -------------------------------------------------------------------------------- /third-party/freetype2/src/gxvalid/gxvmort2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/gxvalid/gxvmort2.c -------------------------------------------------------------------------------- /third-party/freetype2/src/gxvalid/gxvmort4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/gxvalid/gxvmort4.c -------------------------------------------------------------------------------- /third-party/freetype2/src/gxvalid/gxvmort5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/gxvalid/gxvmort5.c -------------------------------------------------------------------------------- /third-party/freetype2/src/gxvalid/gxvmorx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/gxvalid/gxvmorx.c -------------------------------------------------------------------------------- /third-party/freetype2/src/gxvalid/gxvmorx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/gxvalid/gxvmorx.h -------------------------------------------------------------------------------- /third-party/freetype2/src/gxvalid/gxvmorx0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/gxvalid/gxvmorx0.c -------------------------------------------------------------------------------- /third-party/freetype2/src/gxvalid/gxvmorx1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/gxvalid/gxvmorx1.c -------------------------------------------------------------------------------- /third-party/freetype2/src/gxvalid/gxvmorx2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/gxvalid/gxvmorx2.c -------------------------------------------------------------------------------- /third-party/freetype2/src/gxvalid/gxvmorx4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/gxvalid/gxvmorx4.c -------------------------------------------------------------------------------- /third-party/freetype2/src/gxvalid/gxvmorx5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/gxvalid/gxvmorx5.c -------------------------------------------------------------------------------- /third-party/freetype2/src/gxvalid/gxvopbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/gxvalid/gxvopbd.c -------------------------------------------------------------------------------- /third-party/freetype2/src/gxvalid/gxvprop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/gxvalid/gxvprop.c -------------------------------------------------------------------------------- /third-party/freetype2/src/gxvalid/gxvtrak.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/gxvalid/gxvtrak.c -------------------------------------------------------------------------------- /third-party/freetype2/src/gxvalid/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/gxvalid/module.mk -------------------------------------------------------------------------------- /third-party/freetype2/src/gxvalid/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/gxvalid/rules.mk -------------------------------------------------------------------------------- /third-party/freetype2/src/gzip/README.freetype: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/gzip/README.freetype -------------------------------------------------------------------------------- /third-party/freetype2/src/gzip/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/gzip/adler32.c -------------------------------------------------------------------------------- /third-party/freetype2/src/gzip/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/gzip/crc32.c -------------------------------------------------------------------------------- /third-party/freetype2/src/gzip/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/gzip/crc32.h -------------------------------------------------------------------------------- /third-party/freetype2/src/gzip/ftgzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/gzip/ftgzip.c -------------------------------------------------------------------------------- /third-party/freetype2/src/gzip/ftzconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/gzip/ftzconf.h -------------------------------------------------------------------------------- /third-party/freetype2/src/gzip/gzguts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/gzip/gzguts.h -------------------------------------------------------------------------------- /third-party/freetype2/src/gzip/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/gzip/inffast.c -------------------------------------------------------------------------------- /third-party/freetype2/src/gzip/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/gzip/inffast.h -------------------------------------------------------------------------------- /third-party/freetype2/src/gzip/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/gzip/inffixed.h -------------------------------------------------------------------------------- /third-party/freetype2/src/gzip/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/gzip/inflate.c -------------------------------------------------------------------------------- /third-party/freetype2/src/gzip/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/gzip/inflate.h -------------------------------------------------------------------------------- /third-party/freetype2/src/gzip/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/gzip/inftrees.c -------------------------------------------------------------------------------- /third-party/freetype2/src/gzip/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/gzip/inftrees.h -------------------------------------------------------------------------------- /third-party/freetype2/src/gzip/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/gzip/rules.mk -------------------------------------------------------------------------------- /third-party/freetype2/src/gzip/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/gzip/zlib.h -------------------------------------------------------------------------------- /third-party/freetype2/src/gzip/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/gzip/zutil.c -------------------------------------------------------------------------------- /third-party/freetype2/src/gzip/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/gzip/zutil.h -------------------------------------------------------------------------------- /third-party/freetype2/src/lzw/ftlzw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/lzw/ftlzw.c -------------------------------------------------------------------------------- /third-party/freetype2/src/lzw/ftzopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/lzw/ftzopen.c -------------------------------------------------------------------------------- /third-party/freetype2/src/lzw/ftzopen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/lzw/ftzopen.h -------------------------------------------------------------------------------- /third-party/freetype2/src/lzw/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/lzw/rules.mk -------------------------------------------------------------------------------- /third-party/freetype2/src/otvalid/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/otvalid/module.mk -------------------------------------------------------------------------------- /third-party/freetype2/src/otvalid/otvalid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/otvalid/otvalid.c -------------------------------------------------------------------------------- /third-party/freetype2/src/otvalid/otvalid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/otvalid/otvalid.h -------------------------------------------------------------------------------- /third-party/freetype2/src/otvalid/otvbase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/otvalid/otvbase.c -------------------------------------------------------------------------------- /third-party/freetype2/src/otvalid/otvcommn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/otvalid/otvcommn.c -------------------------------------------------------------------------------- /third-party/freetype2/src/otvalid/otvcommn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/otvalid/otvcommn.h -------------------------------------------------------------------------------- /third-party/freetype2/src/otvalid/otverror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/otvalid/otverror.h -------------------------------------------------------------------------------- /third-party/freetype2/src/otvalid/otvgdef.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/otvalid/otvgdef.c -------------------------------------------------------------------------------- /third-party/freetype2/src/otvalid/otvgpos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/otvalid/otvgpos.c -------------------------------------------------------------------------------- /third-party/freetype2/src/otvalid/otvgpos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/otvalid/otvgpos.h -------------------------------------------------------------------------------- /third-party/freetype2/src/otvalid/otvgsub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/otvalid/otvgsub.c -------------------------------------------------------------------------------- /third-party/freetype2/src/otvalid/otvjstf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/otvalid/otvjstf.c -------------------------------------------------------------------------------- /third-party/freetype2/src/otvalid/otvmath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/otvalid/otvmath.c -------------------------------------------------------------------------------- /third-party/freetype2/src/otvalid/otvmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/otvalid/otvmod.c -------------------------------------------------------------------------------- /third-party/freetype2/src/otvalid/otvmod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/otvalid/otvmod.h -------------------------------------------------------------------------------- /third-party/freetype2/src/otvalid/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/otvalid/rules.mk -------------------------------------------------------------------------------- /third-party/freetype2/src/pcf/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/pcf/README -------------------------------------------------------------------------------- /third-party/freetype2/src/pcf/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/pcf/module.mk -------------------------------------------------------------------------------- /third-party/freetype2/src/pcf/pcf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/pcf/pcf.c -------------------------------------------------------------------------------- /third-party/freetype2/src/pcf/pcf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/pcf/pcf.h -------------------------------------------------------------------------------- /third-party/freetype2/src/pcf/pcfdrivr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/pcf/pcfdrivr.c -------------------------------------------------------------------------------- /third-party/freetype2/src/pcf/pcfdrivr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/pcf/pcfdrivr.h -------------------------------------------------------------------------------- /third-party/freetype2/src/pcf/pcferror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/pcf/pcferror.h -------------------------------------------------------------------------------- /third-party/freetype2/src/pcf/pcfread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/pcf/pcfread.c -------------------------------------------------------------------------------- /third-party/freetype2/src/pcf/pcfread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/pcf/pcfread.h -------------------------------------------------------------------------------- /third-party/freetype2/src/pcf/pcfutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/pcf/pcfutil.c -------------------------------------------------------------------------------- /third-party/freetype2/src/pcf/pcfutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/pcf/pcfutil.h -------------------------------------------------------------------------------- /third-party/freetype2/src/pcf/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/pcf/rules.mk -------------------------------------------------------------------------------- /third-party/freetype2/src/pfr/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/pfr/module.mk -------------------------------------------------------------------------------- /third-party/freetype2/src/pfr/pfr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/pfr/pfr.c -------------------------------------------------------------------------------- /third-party/freetype2/src/pfr/pfrcmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/pfr/pfrcmap.c -------------------------------------------------------------------------------- /third-party/freetype2/src/pfr/pfrcmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/pfr/pfrcmap.h -------------------------------------------------------------------------------- /third-party/freetype2/src/pfr/pfrdrivr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/pfr/pfrdrivr.c -------------------------------------------------------------------------------- /third-party/freetype2/src/pfr/pfrdrivr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/pfr/pfrdrivr.h -------------------------------------------------------------------------------- /third-party/freetype2/src/pfr/pfrerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/pfr/pfrerror.h -------------------------------------------------------------------------------- /third-party/freetype2/src/pfr/pfrgload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/pfr/pfrgload.c -------------------------------------------------------------------------------- /third-party/freetype2/src/pfr/pfrgload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/pfr/pfrgload.h -------------------------------------------------------------------------------- /third-party/freetype2/src/pfr/pfrload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/pfr/pfrload.c -------------------------------------------------------------------------------- /third-party/freetype2/src/pfr/pfrload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/pfr/pfrload.h -------------------------------------------------------------------------------- /third-party/freetype2/src/pfr/pfrobjs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/pfr/pfrobjs.c -------------------------------------------------------------------------------- /third-party/freetype2/src/pfr/pfrobjs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/pfr/pfrobjs.h -------------------------------------------------------------------------------- /third-party/freetype2/src/pfr/pfrsbit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/pfr/pfrsbit.c -------------------------------------------------------------------------------- /third-party/freetype2/src/pfr/pfrsbit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/pfr/pfrsbit.h -------------------------------------------------------------------------------- /third-party/freetype2/src/pfr/pfrtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/pfr/pfrtypes.h -------------------------------------------------------------------------------- /third-party/freetype2/src/pfr/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/pfr/rules.mk -------------------------------------------------------------------------------- /third-party/freetype2/src/psaux/afmparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/psaux/afmparse.c -------------------------------------------------------------------------------- /third-party/freetype2/src/psaux/afmparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/psaux/afmparse.h -------------------------------------------------------------------------------- /third-party/freetype2/src/psaux/cffdecode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/psaux/cffdecode.c -------------------------------------------------------------------------------- /third-party/freetype2/src/psaux/cffdecode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/psaux/cffdecode.h -------------------------------------------------------------------------------- /third-party/freetype2/src/psaux/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/psaux/module.mk -------------------------------------------------------------------------------- /third-party/freetype2/src/psaux/psarrst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/psaux/psarrst.c -------------------------------------------------------------------------------- /third-party/freetype2/src/psaux/psarrst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/psaux/psarrst.h -------------------------------------------------------------------------------- /third-party/freetype2/src/psaux/psaux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/psaux/psaux.c -------------------------------------------------------------------------------- /third-party/freetype2/src/psaux/psauxerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/psaux/psauxerr.h -------------------------------------------------------------------------------- /third-party/freetype2/src/psaux/psauxmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/psaux/psauxmod.c -------------------------------------------------------------------------------- /third-party/freetype2/src/psaux/psauxmod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/psaux/psauxmod.h -------------------------------------------------------------------------------- /third-party/freetype2/src/psaux/psblues.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/psaux/psblues.c -------------------------------------------------------------------------------- /third-party/freetype2/src/psaux/psblues.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/psaux/psblues.h -------------------------------------------------------------------------------- /third-party/freetype2/src/psaux/psconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/psaux/psconv.c -------------------------------------------------------------------------------- /third-party/freetype2/src/psaux/psconv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/psaux/psconv.h -------------------------------------------------------------------------------- /third-party/freetype2/src/psaux/pserror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/psaux/pserror.c -------------------------------------------------------------------------------- /third-party/freetype2/src/psaux/pserror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/psaux/pserror.h -------------------------------------------------------------------------------- /third-party/freetype2/src/psaux/psfixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/psaux/psfixed.h -------------------------------------------------------------------------------- /third-party/freetype2/src/psaux/psfont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/psaux/psfont.c -------------------------------------------------------------------------------- /third-party/freetype2/src/psaux/psfont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/psaux/psfont.h -------------------------------------------------------------------------------- /third-party/freetype2/src/psaux/psft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/psaux/psft.c -------------------------------------------------------------------------------- /third-party/freetype2/src/psaux/psft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/psaux/psft.h -------------------------------------------------------------------------------- /third-party/freetype2/src/psaux/psglue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/psaux/psglue.h -------------------------------------------------------------------------------- /third-party/freetype2/src/psaux/pshints.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/psaux/pshints.c -------------------------------------------------------------------------------- /third-party/freetype2/src/psaux/pshints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/psaux/pshints.h -------------------------------------------------------------------------------- /third-party/freetype2/src/psaux/psintrp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/psaux/psintrp.c -------------------------------------------------------------------------------- /third-party/freetype2/src/psaux/psintrp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/psaux/psintrp.h -------------------------------------------------------------------------------- /third-party/freetype2/src/psaux/psobjs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/psaux/psobjs.c -------------------------------------------------------------------------------- /third-party/freetype2/src/psaux/psobjs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/psaux/psobjs.h -------------------------------------------------------------------------------- /third-party/freetype2/src/psaux/psread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/psaux/psread.c -------------------------------------------------------------------------------- /third-party/freetype2/src/psaux/psread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/psaux/psread.h -------------------------------------------------------------------------------- /third-party/freetype2/src/psaux/psstack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/psaux/psstack.c -------------------------------------------------------------------------------- /third-party/freetype2/src/psaux/psstack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/psaux/psstack.h -------------------------------------------------------------------------------- /third-party/freetype2/src/psaux/pstypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/psaux/pstypes.h -------------------------------------------------------------------------------- /third-party/freetype2/src/psaux/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/psaux/rules.mk -------------------------------------------------------------------------------- /third-party/freetype2/src/psaux/t1cmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/psaux/t1cmap.c -------------------------------------------------------------------------------- /third-party/freetype2/src/psaux/t1cmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/psaux/t1cmap.h -------------------------------------------------------------------------------- /third-party/freetype2/src/psaux/t1decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/psaux/t1decode.c -------------------------------------------------------------------------------- /third-party/freetype2/src/psaux/t1decode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/psaux/t1decode.h -------------------------------------------------------------------------------- /third-party/freetype2/src/pshinter/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/pshinter/module.mk -------------------------------------------------------------------------------- /third-party/freetype2/src/pshinter/pshalgo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/pshinter/pshalgo.c -------------------------------------------------------------------------------- /third-party/freetype2/src/pshinter/pshalgo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/pshinter/pshalgo.h -------------------------------------------------------------------------------- /third-party/freetype2/src/pshinter/pshglob.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/pshinter/pshglob.c -------------------------------------------------------------------------------- /third-party/freetype2/src/pshinter/pshglob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/pshinter/pshglob.h -------------------------------------------------------------------------------- /third-party/freetype2/src/pshinter/pshinter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/pshinter/pshinter.c -------------------------------------------------------------------------------- /third-party/freetype2/src/pshinter/pshmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/pshinter/pshmod.c -------------------------------------------------------------------------------- /third-party/freetype2/src/pshinter/pshmod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/pshinter/pshmod.h -------------------------------------------------------------------------------- /third-party/freetype2/src/pshinter/pshnterr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/pshinter/pshnterr.h -------------------------------------------------------------------------------- /third-party/freetype2/src/pshinter/pshrec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/pshinter/pshrec.c -------------------------------------------------------------------------------- /third-party/freetype2/src/pshinter/pshrec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/pshinter/pshrec.h -------------------------------------------------------------------------------- /third-party/freetype2/src/pshinter/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/pshinter/rules.mk -------------------------------------------------------------------------------- /third-party/freetype2/src/psnames/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/psnames/module.mk -------------------------------------------------------------------------------- /third-party/freetype2/src/psnames/psmodule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/psnames/psmodule.c -------------------------------------------------------------------------------- /third-party/freetype2/src/psnames/psmodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/psnames/psmodule.h -------------------------------------------------------------------------------- /third-party/freetype2/src/psnames/psnamerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/psnames/psnamerr.h -------------------------------------------------------------------------------- /third-party/freetype2/src/psnames/psnames.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/psnames/psnames.c -------------------------------------------------------------------------------- /third-party/freetype2/src/psnames/pstables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/psnames/pstables.h -------------------------------------------------------------------------------- /third-party/freetype2/src/psnames/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/psnames/rules.mk -------------------------------------------------------------------------------- /third-party/freetype2/src/raster/ftmisc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/raster/ftmisc.h -------------------------------------------------------------------------------- /third-party/freetype2/src/raster/ftraster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/raster/ftraster.c -------------------------------------------------------------------------------- /third-party/freetype2/src/raster/ftraster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/raster/ftraster.h -------------------------------------------------------------------------------- /third-party/freetype2/src/raster/ftrend1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/raster/ftrend1.c -------------------------------------------------------------------------------- /third-party/freetype2/src/raster/ftrend1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/raster/ftrend1.h -------------------------------------------------------------------------------- /third-party/freetype2/src/raster/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/raster/module.mk -------------------------------------------------------------------------------- /third-party/freetype2/src/raster/raster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/raster/raster.c -------------------------------------------------------------------------------- /third-party/freetype2/src/raster/rasterrs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/raster/rasterrs.h -------------------------------------------------------------------------------- /third-party/freetype2/src/raster/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/raster/rules.mk -------------------------------------------------------------------------------- /third-party/freetype2/src/sdf/ftbsdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/sdf/ftbsdf.c -------------------------------------------------------------------------------- /third-party/freetype2/src/sdf/ftsdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/sdf/ftsdf.c -------------------------------------------------------------------------------- /third-party/freetype2/src/sdf/ftsdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/sdf/ftsdf.h -------------------------------------------------------------------------------- /third-party/freetype2/src/sdf/ftsdfcommon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/sdf/ftsdfcommon.c -------------------------------------------------------------------------------- /third-party/freetype2/src/sdf/ftsdfcommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/sdf/ftsdfcommon.h -------------------------------------------------------------------------------- /third-party/freetype2/src/sdf/ftsdferrs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/sdf/ftsdferrs.h -------------------------------------------------------------------------------- /third-party/freetype2/src/sdf/ftsdfrend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/sdf/ftsdfrend.c -------------------------------------------------------------------------------- /third-party/freetype2/src/sdf/ftsdfrend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/sdf/ftsdfrend.h -------------------------------------------------------------------------------- /third-party/freetype2/src/sdf/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/sdf/module.mk -------------------------------------------------------------------------------- /third-party/freetype2/src/sdf/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/sdf/rules.mk -------------------------------------------------------------------------------- /third-party/freetype2/src/sdf/sdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/sdf/sdf.c -------------------------------------------------------------------------------- /third-party/freetype2/src/sfnt/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/sfnt/module.mk -------------------------------------------------------------------------------- /third-party/freetype2/src/sfnt/pngshim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/sfnt/pngshim.c -------------------------------------------------------------------------------- /third-party/freetype2/src/sfnt/pngshim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/sfnt/pngshim.h -------------------------------------------------------------------------------- /third-party/freetype2/src/sfnt/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/sfnt/rules.mk -------------------------------------------------------------------------------- /third-party/freetype2/src/sfnt/sfdriver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/sfnt/sfdriver.c -------------------------------------------------------------------------------- /third-party/freetype2/src/sfnt/sfdriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/sfnt/sfdriver.h -------------------------------------------------------------------------------- /third-party/freetype2/src/sfnt/sferrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/sfnt/sferrors.h -------------------------------------------------------------------------------- /third-party/freetype2/src/sfnt/sfnt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/sfnt/sfnt.c -------------------------------------------------------------------------------- /third-party/freetype2/src/sfnt/sfobjs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/sfnt/sfobjs.c -------------------------------------------------------------------------------- /third-party/freetype2/src/sfnt/sfobjs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/sfnt/sfobjs.h -------------------------------------------------------------------------------- /third-party/freetype2/src/sfnt/sfwoff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/sfnt/sfwoff.c -------------------------------------------------------------------------------- /third-party/freetype2/src/sfnt/sfwoff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/sfnt/sfwoff.h -------------------------------------------------------------------------------- /third-party/freetype2/src/sfnt/sfwoff2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/sfnt/sfwoff2.c -------------------------------------------------------------------------------- /third-party/freetype2/src/sfnt/sfwoff2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/sfnt/sfwoff2.h -------------------------------------------------------------------------------- /third-party/freetype2/src/sfnt/ttbdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/sfnt/ttbdf.c -------------------------------------------------------------------------------- /third-party/freetype2/src/sfnt/ttbdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/sfnt/ttbdf.h -------------------------------------------------------------------------------- /third-party/freetype2/src/sfnt/ttcmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/sfnt/ttcmap.c -------------------------------------------------------------------------------- /third-party/freetype2/src/sfnt/ttcmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/sfnt/ttcmap.h -------------------------------------------------------------------------------- /third-party/freetype2/src/sfnt/ttcmapc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/sfnt/ttcmapc.h -------------------------------------------------------------------------------- /third-party/freetype2/src/sfnt/ttcolr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/sfnt/ttcolr.c -------------------------------------------------------------------------------- /third-party/freetype2/src/sfnt/ttcolr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/sfnt/ttcolr.h -------------------------------------------------------------------------------- /third-party/freetype2/src/sfnt/ttcpal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/sfnt/ttcpal.c -------------------------------------------------------------------------------- /third-party/freetype2/src/sfnt/ttcpal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/sfnt/ttcpal.h -------------------------------------------------------------------------------- /third-party/freetype2/src/sfnt/ttgpos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/sfnt/ttgpos.c -------------------------------------------------------------------------------- /third-party/freetype2/src/sfnt/ttgpos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/sfnt/ttgpos.h -------------------------------------------------------------------------------- /third-party/freetype2/src/sfnt/ttkern.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/sfnt/ttkern.c -------------------------------------------------------------------------------- /third-party/freetype2/src/sfnt/ttkern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/sfnt/ttkern.h -------------------------------------------------------------------------------- /third-party/freetype2/src/sfnt/ttload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/sfnt/ttload.c -------------------------------------------------------------------------------- /third-party/freetype2/src/sfnt/ttload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/sfnt/ttload.h -------------------------------------------------------------------------------- /third-party/freetype2/src/sfnt/ttmtx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/sfnt/ttmtx.c -------------------------------------------------------------------------------- /third-party/freetype2/src/sfnt/ttmtx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/sfnt/ttmtx.h -------------------------------------------------------------------------------- /third-party/freetype2/src/sfnt/ttpost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/sfnt/ttpost.c -------------------------------------------------------------------------------- /third-party/freetype2/src/sfnt/ttpost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/sfnt/ttpost.h -------------------------------------------------------------------------------- /third-party/freetype2/src/sfnt/ttsbit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/sfnt/ttsbit.c -------------------------------------------------------------------------------- /third-party/freetype2/src/sfnt/ttsbit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/sfnt/ttsbit.h -------------------------------------------------------------------------------- /third-party/freetype2/src/sfnt/ttsvg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/sfnt/ttsvg.c -------------------------------------------------------------------------------- /third-party/freetype2/src/sfnt/ttsvg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/sfnt/ttsvg.h -------------------------------------------------------------------------------- /third-party/freetype2/src/sfnt/woff2tags.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/sfnt/woff2tags.c -------------------------------------------------------------------------------- /third-party/freetype2/src/sfnt/woff2tags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/sfnt/woff2tags.h -------------------------------------------------------------------------------- /third-party/freetype2/src/smooth/ftgrays.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/smooth/ftgrays.c -------------------------------------------------------------------------------- /third-party/freetype2/src/smooth/ftgrays.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/smooth/ftgrays.h -------------------------------------------------------------------------------- /third-party/freetype2/src/smooth/ftsmerrs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/smooth/ftsmerrs.h -------------------------------------------------------------------------------- /third-party/freetype2/src/smooth/ftsmooth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/smooth/ftsmooth.c -------------------------------------------------------------------------------- /third-party/freetype2/src/smooth/ftsmooth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/smooth/ftsmooth.h -------------------------------------------------------------------------------- /third-party/freetype2/src/smooth/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/smooth/module.mk -------------------------------------------------------------------------------- /third-party/freetype2/src/smooth/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/smooth/rules.mk -------------------------------------------------------------------------------- /third-party/freetype2/src/smooth/smooth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/smooth/smooth.c -------------------------------------------------------------------------------- /third-party/freetype2/src/svg/ftsvg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/svg/ftsvg.c -------------------------------------------------------------------------------- /third-party/freetype2/src/svg/ftsvg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/svg/ftsvg.h -------------------------------------------------------------------------------- /third-party/freetype2/src/svg/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/svg/module.mk -------------------------------------------------------------------------------- /third-party/freetype2/src/svg/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/svg/rules.mk -------------------------------------------------------------------------------- /third-party/freetype2/src/svg/svg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/svg/svg.c -------------------------------------------------------------------------------- /third-party/freetype2/src/svg/svgtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/svg/svgtypes.h -------------------------------------------------------------------------------- /third-party/freetype2/src/tools/afblue.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/tools/afblue.pl -------------------------------------------------------------------------------- /third-party/freetype2/src/tools/apinames.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/tools/apinames.c -------------------------------------------------------------------------------- /third-party/freetype2/src/tools/chktrcmp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/tools/chktrcmp.py -------------------------------------------------------------------------------- /third-party/freetype2/src/tools/cordic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/tools/cordic.py -------------------------------------------------------------------------------- /third-party/freetype2/src/tools/glnames.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/tools/glnames.py -------------------------------------------------------------------------------- /third-party/freetype2/src/tools/no-copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/tools/no-copyright -------------------------------------------------------------------------------- /third-party/freetype2/src/tools/test_afm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/tools/test_afm.c -------------------------------------------------------------------------------- /third-party/freetype2/src/tools/test_bbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/tools/test_bbox.c -------------------------------------------------------------------------------- /third-party/freetype2/src/tools/test_trig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/tools/test_trig.c -------------------------------------------------------------------------------- /third-party/freetype2/src/truetype/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/truetype/module.mk -------------------------------------------------------------------------------- /third-party/freetype2/src/truetype/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/truetype/rules.mk -------------------------------------------------------------------------------- /third-party/freetype2/src/truetype/truetype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/truetype/truetype.c -------------------------------------------------------------------------------- /third-party/freetype2/src/truetype/ttdriver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/truetype/ttdriver.c -------------------------------------------------------------------------------- /third-party/freetype2/src/truetype/ttdriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/truetype/ttdriver.h -------------------------------------------------------------------------------- /third-party/freetype2/src/truetype/tterrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/truetype/tterrors.h -------------------------------------------------------------------------------- /third-party/freetype2/src/truetype/ttgload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/truetype/ttgload.c -------------------------------------------------------------------------------- /third-party/freetype2/src/truetype/ttgload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/truetype/ttgload.h -------------------------------------------------------------------------------- /third-party/freetype2/src/truetype/ttgxvar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/truetype/ttgxvar.c -------------------------------------------------------------------------------- /third-party/freetype2/src/truetype/ttgxvar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/truetype/ttgxvar.h -------------------------------------------------------------------------------- /third-party/freetype2/src/truetype/ttinterp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/truetype/ttinterp.c -------------------------------------------------------------------------------- /third-party/freetype2/src/truetype/ttinterp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/truetype/ttinterp.h -------------------------------------------------------------------------------- /third-party/freetype2/src/truetype/ttobjs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/truetype/ttobjs.c -------------------------------------------------------------------------------- /third-party/freetype2/src/truetype/ttobjs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/truetype/ttobjs.h -------------------------------------------------------------------------------- /third-party/freetype2/src/truetype/ttpload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/truetype/ttpload.c -------------------------------------------------------------------------------- /third-party/freetype2/src/truetype/ttpload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/truetype/ttpload.h -------------------------------------------------------------------------------- /third-party/freetype2/src/type1/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/type1/module.mk -------------------------------------------------------------------------------- /third-party/freetype2/src/type1/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/type1/rules.mk -------------------------------------------------------------------------------- /third-party/freetype2/src/type1/t1afm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/type1/t1afm.c -------------------------------------------------------------------------------- /third-party/freetype2/src/type1/t1afm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/type1/t1afm.h -------------------------------------------------------------------------------- /third-party/freetype2/src/type1/t1driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/type1/t1driver.c -------------------------------------------------------------------------------- /third-party/freetype2/src/type1/t1driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/type1/t1driver.h -------------------------------------------------------------------------------- /third-party/freetype2/src/type1/t1errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/type1/t1errors.h -------------------------------------------------------------------------------- /third-party/freetype2/src/type1/t1gload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/type1/t1gload.c -------------------------------------------------------------------------------- /third-party/freetype2/src/type1/t1gload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/type1/t1gload.h -------------------------------------------------------------------------------- /third-party/freetype2/src/type1/t1load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/type1/t1load.c -------------------------------------------------------------------------------- /third-party/freetype2/src/type1/t1load.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/type1/t1load.h -------------------------------------------------------------------------------- /third-party/freetype2/src/type1/t1objs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/type1/t1objs.c -------------------------------------------------------------------------------- /third-party/freetype2/src/type1/t1objs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/type1/t1objs.h -------------------------------------------------------------------------------- /third-party/freetype2/src/type1/t1parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/type1/t1parse.c -------------------------------------------------------------------------------- /third-party/freetype2/src/type1/t1parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/type1/t1parse.h -------------------------------------------------------------------------------- /third-party/freetype2/src/type1/t1tokens.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/type1/t1tokens.h -------------------------------------------------------------------------------- /third-party/freetype2/src/type1/type1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/type1/type1.c -------------------------------------------------------------------------------- /third-party/freetype2/src/type42/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/type42/module.mk -------------------------------------------------------------------------------- /third-party/freetype2/src/type42/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/type42/rules.mk -------------------------------------------------------------------------------- /third-party/freetype2/src/type42/t42drivr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/type42/t42drivr.c -------------------------------------------------------------------------------- /third-party/freetype2/src/type42/t42drivr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/type42/t42drivr.h -------------------------------------------------------------------------------- /third-party/freetype2/src/type42/t42error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/type42/t42error.h -------------------------------------------------------------------------------- /third-party/freetype2/src/type42/t42objs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/type42/t42objs.c -------------------------------------------------------------------------------- /third-party/freetype2/src/type42/t42objs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/type42/t42objs.h -------------------------------------------------------------------------------- /third-party/freetype2/src/type42/t42parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/type42/t42parse.c -------------------------------------------------------------------------------- /third-party/freetype2/src/type42/t42parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/type42/t42parse.h -------------------------------------------------------------------------------- /third-party/freetype2/src/type42/t42types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/type42/t42types.h -------------------------------------------------------------------------------- /third-party/freetype2/src/type42/type42.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/type42/type42.c -------------------------------------------------------------------------------- /third-party/freetype2/src/winfonts/fnterrs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/winfonts/fnterrs.h -------------------------------------------------------------------------------- /third-party/freetype2/src/winfonts/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/winfonts/module.mk -------------------------------------------------------------------------------- /third-party/freetype2/src/winfonts/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/winfonts/rules.mk -------------------------------------------------------------------------------- /third-party/freetype2/src/winfonts/winfnt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/winfonts/winfnt.c -------------------------------------------------------------------------------- /third-party/freetype2/src/winfonts/winfnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/src/winfonts/winfnt.h -------------------------------------------------------------------------------- /third-party/freetype2/subprojects/libpng.wrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/subprojects/libpng.wrap -------------------------------------------------------------------------------- /third-party/freetype2/subprojects/zlib.wrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/subprojects/zlib.wrap -------------------------------------------------------------------------------- /third-party/freetype2/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/tests/README.md -------------------------------------------------------------------------------- /third-party/freetype2/tests/issue-1063/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/tests/issue-1063/main.c -------------------------------------------------------------------------------- /third-party/freetype2/tests/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/tests/meson.build -------------------------------------------------------------------------------- /third-party/freetype2/vms_make.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/freetype2/vms_make.com -------------------------------------------------------------------------------- /third-party/json/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/json/json.hpp -------------------------------------------------------------------------------- /third-party/lpng1639/.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/.appveyor.yml -------------------------------------------------------------------------------- /third-party/lpng1639/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/.gitignore -------------------------------------------------------------------------------- /third-party/lpng1639/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/.travis.yml -------------------------------------------------------------------------------- /third-party/lpng1639/ANNOUNCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/ANNOUNCE -------------------------------------------------------------------------------- /third-party/lpng1639/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/AUTHORS -------------------------------------------------------------------------------- /third-party/lpng1639/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/CHANGES -------------------------------------------------------------------------------- /third-party/lpng1639/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/CMakeLists.txt -------------------------------------------------------------------------------- /third-party/lpng1639/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/INSTALL -------------------------------------------------------------------------------- /third-party/lpng1639/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/LICENSE -------------------------------------------------------------------------------- /third-party/lpng1639/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/Makefile.am -------------------------------------------------------------------------------- /third-party/lpng1639/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/Makefile.in -------------------------------------------------------------------------------- /third-party/lpng1639/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/README -------------------------------------------------------------------------------- /third-party/lpng1639/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/TODO -------------------------------------------------------------------------------- /third-party/lpng1639/TRADEMARK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/TRADEMARK -------------------------------------------------------------------------------- /third-party/lpng1639/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/aclocal.m4 -------------------------------------------------------------------------------- /third-party/lpng1639/arm/arm_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/arm/arm_init.c -------------------------------------------------------------------------------- /third-party/lpng1639/arm/filter_neon.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/arm/filter_neon.S -------------------------------------------------------------------------------- /third-party/lpng1639/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/autogen.sh -------------------------------------------------------------------------------- /third-party/lpng1639/ci/.shellcheckrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/ci/.shellcheckrc -------------------------------------------------------------------------------- /third-party/lpng1639/ci/LICENSE_MIT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/ci/LICENSE_MIT.txt -------------------------------------------------------------------------------- /third-party/lpng1639/ci/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/ci/README.md -------------------------------------------------------------------------------- /third-party/lpng1639/ci/ci_lint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/ci/ci_lint.sh -------------------------------------------------------------------------------- /third-party/lpng1639/ci/ci_verify_cmake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/ci/ci_verify_cmake.sh -------------------------------------------------------------------------------- /third-party/lpng1639/ci/ci_verify_configure.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/ci/ci_verify_configure.sh -------------------------------------------------------------------------------- /third-party/lpng1639/ci/ci_verify_makefiles.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/ci/ci_verify_makefiles.sh -------------------------------------------------------------------------------- /third-party/lpng1639/ci/ci_verify_version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/ci/ci_verify_version.sh -------------------------------------------------------------------------------- /third-party/lpng1639/ci/lib/ci.lib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/ci/lib/ci.lib.sh -------------------------------------------------------------------------------- /third-party/lpng1639/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/compile -------------------------------------------------------------------------------- /third-party/lpng1639/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/config.guess -------------------------------------------------------------------------------- /third-party/lpng1639/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/config.h.in -------------------------------------------------------------------------------- /third-party/lpng1639/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/config.sub -------------------------------------------------------------------------------- /third-party/lpng1639/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/configure -------------------------------------------------------------------------------- /third-party/lpng1639/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/configure.ac -------------------------------------------------------------------------------- /third-party/lpng1639/contrib/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/contrib/.editorconfig -------------------------------------------------------------------------------- /third-party/lpng1639/contrib/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/contrib/README.txt -------------------------------------------------------------------------------- /third-party/lpng1639/contrib/arm-neon/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/contrib/arm-neon/README -------------------------------------------------------------------------------- /third-party/lpng1639/contrib/arm-neon/linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/contrib/arm-neon/linux.c -------------------------------------------------------------------------------- /third-party/lpng1639/contrib/conftest/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/contrib/conftest/README -------------------------------------------------------------------------------- /third-party/lpng1639/contrib/conftest/read.dfa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/contrib/conftest/read.dfa -------------------------------------------------------------------------------- /third-party/lpng1639/contrib/gregbook/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/contrib/gregbook/COPYING -------------------------------------------------------------------------------- /third-party/lpng1639/contrib/gregbook/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/contrib/gregbook/LICENSE -------------------------------------------------------------------------------- /third-party/lpng1639/contrib/gregbook/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/contrib/gregbook/README -------------------------------------------------------------------------------- /third-party/lpng1639/contrib/gregbook/rpng-x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/contrib/gregbook/rpng-x.c -------------------------------------------------------------------------------- /third-party/lpng1639/contrib/gregbook/wpng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/contrib/gregbook/wpng.c -------------------------------------------------------------------------------- /third-party/lpng1639/contrib/libtests/tarith.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/contrib/libtests/tarith.c -------------------------------------------------------------------------------- /third-party/lpng1639/contrib/mips-mmi/linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/contrib/mips-mmi/linux.c -------------------------------------------------------------------------------- /third-party/lpng1639/contrib/mips-msa/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/contrib/mips-msa/README -------------------------------------------------------------------------------- /third-party/lpng1639/contrib/mips-msa/linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/contrib/mips-msa/linux.c -------------------------------------------------------------------------------- /third-party/lpng1639/contrib/oss-fuzz/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/contrib/oss-fuzz/build.sh -------------------------------------------------------------------------------- /third-party/lpng1639/contrib/oss-fuzz/png.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/contrib/oss-fuzz/png.dict -------------------------------------------------------------------------------- /third-party/lpng1639/contrib/pngexif/.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | *.py[co] 3 | *$py.class 4 | -------------------------------------------------------------------------------- /third-party/lpng1639/contrib/pngexif/.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/contrib/pngexif/.pylintrc -------------------------------------------------------------------------------- /third-party/lpng1639/contrib/pngexif/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/contrib/pngexif/README.md -------------------------------------------------------------------------------- /third-party/lpng1639/contrib/pngminim/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/contrib/pngminim/README -------------------------------------------------------------------------------- /third-party/lpng1639/contrib/pngsuite/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/contrib/pngsuite/README -------------------------------------------------------------------------------- /third-party/lpng1639/contrib/riscv-rvv/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/contrib/riscv-rvv/README -------------------------------------------------------------------------------- /third-party/lpng1639/contrib/riscv-rvv/linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/contrib/riscv-rvv/linux.c -------------------------------------------------------------------------------- /third-party/lpng1639/contrib/tools/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/contrib/tools/README.txt -------------------------------------------------------------------------------- /third-party/lpng1639/contrib/tools/cvtcolor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/contrib/tools/cvtcolor.c -------------------------------------------------------------------------------- /third-party/lpng1639/contrib/tools/genpng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/contrib/tools/genpng.c -------------------------------------------------------------------------------- /third-party/lpng1639/contrib/tools/intgamma.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/contrib/tools/intgamma.sh -------------------------------------------------------------------------------- /third-party/lpng1639/contrib/tools/makesRGB.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/contrib/tools/makesRGB.c -------------------------------------------------------------------------------- /third-party/lpng1639/contrib/tools/pngcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/contrib/tools/pngcp.c -------------------------------------------------------------------------------- /third-party/lpng1639/contrib/tools/pngfix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/contrib/tools/pngfix.c -------------------------------------------------------------------------------- /third-party/lpng1639/contrib/tools/sRGB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/contrib/tools/sRGB.h -------------------------------------------------------------------------------- /third-party/lpng1639/contrib/visupng/PngFile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/contrib/visupng/PngFile.c -------------------------------------------------------------------------------- /third-party/lpng1639/contrib/visupng/PngFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/contrib/visupng/PngFile.h -------------------------------------------------------------------------------- /third-party/lpng1639/contrib/visupng/cexcept.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/contrib/visupng/cexcept.h -------------------------------------------------------------------------------- /third-party/lpng1639/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/depcomp -------------------------------------------------------------------------------- /third-party/lpng1639/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/example.c -------------------------------------------------------------------------------- /third-party/lpng1639/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/install-sh -------------------------------------------------------------------------------- /third-party/lpng1639/intel/intel_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/intel/intel_init.c -------------------------------------------------------------------------------- /third-party/lpng1639/libpng-config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/libpng-config.in -------------------------------------------------------------------------------- /third-party/lpng1639/libpng-manual.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/libpng-manual.txt -------------------------------------------------------------------------------- /third-party/lpng1639/libpng.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/libpng.3 -------------------------------------------------------------------------------- /third-party/lpng1639/libpng.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/libpng.pc.in -------------------------------------------------------------------------------- /third-party/lpng1639/libpngpf.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/libpngpf.3 -------------------------------------------------------------------------------- /third-party/lpng1639/loongarch/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/loongarch/.editorconfig -------------------------------------------------------------------------------- /third-party/lpng1639/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/ltmain.sh -------------------------------------------------------------------------------- /third-party/lpng1639/mips/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/mips/.editorconfig -------------------------------------------------------------------------------- /third-party/lpng1639/mips/mips_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/mips/mips_init.c -------------------------------------------------------------------------------- /third-party/lpng1639/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/missing -------------------------------------------------------------------------------- /third-party/lpng1639/png.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/png.5 -------------------------------------------------------------------------------- /third-party/lpng1639/png.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/png.c -------------------------------------------------------------------------------- /third-party/lpng1639/png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/png.h -------------------------------------------------------------------------------- /third-party/lpng1639/pngbar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/pngbar.jpg -------------------------------------------------------------------------------- /third-party/lpng1639/pngbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/pngbar.png -------------------------------------------------------------------------------- /third-party/lpng1639/pngconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/pngconf.h -------------------------------------------------------------------------------- /third-party/lpng1639/pngdebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/pngdebug.h -------------------------------------------------------------------------------- /third-party/lpng1639/pngerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/pngerror.c -------------------------------------------------------------------------------- /third-party/lpng1639/pngget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/pngget.c -------------------------------------------------------------------------------- /third-party/lpng1639/pnginfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/pnginfo.h -------------------------------------------------------------------------------- /third-party/lpng1639/pngmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/pngmem.c -------------------------------------------------------------------------------- /third-party/lpng1639/pngnow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/pngnow.png -------------------------------------------------------------------------------- /third-party/lpng1639/pngpread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/pngpread.c -------------------------------------------------------------------------------- /third-party/lpng1639/pngpriv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/pngpriv.h -------------------------------------------------------------------------------- /third-party/lpng1639/pngread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/pngread.c -------------------------------------------------------------------------------- /third-party/lpng1639/pngrio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/pngrio.c -------------------------------------------------------------------------------- /third-party/lpng1639/pngrtran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/pngrtran.c -------------------------------------------------------------------------------- /third-party/lpng1639/pngrutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/pngrutil.c -------------------------------------------------------------------------------- /third-party/lpng1639/pngset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/pngset.c -------------------------------------------------------------------------------- /third-party/lpng1639/pngstruct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/pngstruct.h -------------------------------------------------------------------------------- /third-party/lpng1639/pngtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/pngtest.c -------------------------------------------------------------------------------- /third-party/lpng1639/pngtest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/pngtest.png -------------------------------------------------------------------------------- /third-party/lpng1639/pngtrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/pngtrans.c -------------------------------------------------------------------------------- /third-party/lpng1639/pngusr.dfa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/pngusr.dfa -------------------------------------------------------------------------------- /third-party/lpng1639/pngwio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/pngwio.c -------------------------------------------------------------------------------- /third-party/lpng1639/pngwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/pngwrite.c -------------------------------------------------------------------------------- /third-party/lpng1639/pngwtran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/pngwtran.c -------------------------------------------------------------------------------- /third-party/lpng1639/pngwutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/pngwutil.c -------------------------------------------------------------------------------- /third-party/lpng1639/powerpc/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/powerpc/.editorconfig -------------------------------------------------------------------------------- /third-party/lpng1639/powerpc/powerpc_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/powerpc/powerpc_init.c -------------------------------------------------------------------------------- /third-party/lpng1639/projects/.editorconfig: -------------------------------------------------------------------------------- 1 | # https://editorconfig.org 2 | 3 | root = true 4 | -------------------------------------------------------------------------------- /third-party/lpng1639/riscv/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/riscv/.editorconfig -------------------------------------------------------------------------------- /third-party/lpng1639/riscv/riscv_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/riscv/riscv_init.c -------------------------------------------------------------------------------- /third-party/lpng1639/scripts/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/scripts/README.txt -------------------------------------------------------------------------------- /third-party/lpng1639/scripts/SCOPTIONS.ppc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/scripts/SCOPTIONS.ppc -------------------------------------------------------------------------------- /third-party/lpng1639/scripts/checksym.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/scripts/checksym.awk -------------------------------------------------------------------------------- /third-party/lpng1639/scripts/cmake/AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/scripts/cmake/AUTHORS.md -------------------------------------------------------------------------------- /third-party/lpng1639/scripts/cmake/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/scripts/cmake/README.md -------------------------------------------------------------------------------- /third-party/lpng1639/scripts/descrip.mms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/scripts/descrip.mms -------------------------------------------------------------------------------- /third-party/lpng1639/scripts/dfn.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/scripts/dfn.awk -------------------------------------------------------------------------------- /third-party/lpng1639/scripts/intprefix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/scripts/intprefix.c -------------------------------------------------------------------------------- /third-party/lpng1639/scripts/libpng.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/scripts/libpng.pc.in -------------------------------------------------------------------------------- /third-party/lpng1639/scripts/macro.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/scripts/macro.lst -------------------------------------------------------------------------------- /third-party/lpng1639/scripts/makefile.32sunu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/scripts/makefile.32sunu -------------------------------------------------------------------------------- /third-party/lpng1639/scripts/makefile.64sunu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/scripts/makefile.64sunu -------------------------------------------------------------------------------- /third-party/lpng1639/scripts/makefile.aix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/scripts/makefile.aix -------------------------------------------------------------------------------- /third-party/lpng1639/scripts/makefile.amiga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/scripts/makefile.amiga -------------------------------------------------------------------------------- /third-party/lpng1639/scripts/makefile.atari: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/scripts/makefile.atari -------------------------------------------------------------------------------- /third-party/lpng1639/scripts/makefile.bc32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/scripts/makefile.bc32 -------------------------------------------------------------------------------- /third-party/lpng1639/scripts/makefile.beos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/scripts/makefile.beos -------------------------------------------------------------------------------- /third-party/lpng1639/scripts/makefile.c89: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/scripts/makefile.c89 -------------------------------------------------------------------------------- /third-party/lpng1639/scripts/makefile.clang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/scripts/makefile.clang -------------------------------------------------------------------------------- /third-party/lpng1639/scripts/makefile.darwin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/scripts/makefile.darwin -------------------------------------------------------------------------------- /third-party/lpng1639/scripts/makefile.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/scripts/makefile.dec -------------------------------------------------------------------------------- /third-party/lpng1639/scripts/makefile.dj2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/scripts/makefile.dj2 -------------------------------------------------------------------------------- /third-party/lpng1639/scripts/makefile.emcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/scripts/makefile.emcc -------------------------------------------------------------------------------- /third-party/lpng1639/scripts/makefile.gcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/scripts/makefile.gcc -------------------------------------------------------------------------------- /third-party/lpng1639/scripts/makefile.hp64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/scripts/makefile.hp64 -------------------------------------------------------------------------------- /third-party/lpng1639/scripts/makefile.hpgcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/scripts/makefile.hpgcc -------------------------------------------------------------------------------- /third-party/lpng1639/scripts/makefile.hpux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/scripts/makefile.hpux -------------------------------------------------------------------------------- /third-party/lpng1639/scripts/makefile.ibmc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/scripts/makefile.ibmc -------------------------------------------------------------------------------- /third-party/lpng1639/scripts/makefile.intel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/scripts/makefile.intel -------------------------------------------------------------------------------- /third-party/lpng1639/scripts/makefile.linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/scripts/makefile.linux -------------------------------------------------------------------------------- /third-party/lpng1639/scripts/makefile.mips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/scripts/makefile.mips -------------------------------------------------------------------------------- /third-party/lpng1639/scripts/makefile.msys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/scripts/makefile.msys -------------------------------------------------------------------------------- /third-party/lpng1639/scripts/makefile.sco: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/scripts/makefile.sco -------------------------------------------------------------------------------- /third-party/lpng1639/scripts/makefile.sggcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/scripts/makefile.sggcc -------------------------------------------------------------------------------- /third-party/lpng1639/scripts/makefile.sgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/scripts/makefile.sgi -------------------------------------------------------------------------------- /third-party/lpng1639/scripts/makefile.so9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/scripts/makefile.so9 -------------------------------------------------------------------------------- /third-party/lpng1639/scripts/makefile.std: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/scripts/makefile.std -------------------------------------------------------------------------------- /third-party/lpng1639/scripts/makefile.sunos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/scripts/makefile.sunos -------------------------------------------------------------------------------- /third-party/lpng1639/scripts/makevms.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/scripts/makevms.com -------------------------------------------------------------------------------- /third-party/lpng1639/scripts/options.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/scripts/options.awk -------------------------------------------------------------------------------- /third-party/lpng1639/scripts/pnglibconf.dfa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/scripts/pnglibconf.dfa -------------------------------------------------------------------------------- /third-party/lpng1639/scripts/pnglibconf.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/scripts/pnglibconf.mak -------------------------------------------------------------------------------- /third-party/lpng1639/scripts/pngwin.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/scripts/pngwin.rc -------------------------------------------------------------------------------- /third-party/lpng1639/scripts/prefix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/scripts/prefix.c -------------------------------------------------------------------------------- /third-party/lpng1639/scripts/smakefile.ppc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/scripts/smakefile.ppc -------------------------------------------------------------------------------- /third-party/lpng1639/scripts/sym.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/scripts/sym.c -------------------------------------------------------------------------------- /third-party/lpng1639/scripts/symbols.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/scripts/symbols.c -------------------------------------------------------------------------------- /third-party/lpng1639/scripts/symbols.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/scripts/symbols.def -------------------------------------------------------------------------------- /third-party/lpng1639/scripts/vers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/scripts/vers.c -------------------------------------------------------------------------------- /third-party/lpng1639/test-driver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/test-driver -------------------------------------------------------------------------------- /third-party/lpng1639/tests/pngimage-full: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/tests/pngimage-full -------------------------------------------------------------------------------- /third-party/lpng1639/tests/pngimage-quick: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/tests/pngimage-quick -------------------------------------------------------------------------------- /third-party/lpng1639/tests/pngstest-1.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/tests/pngstest-1.8 -------------------------------------------------------------------------------- /third-party/lpng1639/tests/pngstest-linear: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/tests/pngstest-linear -------------------------------------------------------------------------------- /third-party/lpng1639/tests/pngstest-none: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/tests/pngstest-none -------------------------------------------------------------------------------- /third-party/lpng1639/tests/pngstest-sRGB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/tests/pngstest-sRGB -------------------------------------------------------------------------------- /third-party/lpng1639/tests/pngtest-all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/tests/pngtest-all -------------------------------------------------------------------------------- /third-party/lpng1639/tests/pngunknown-IDAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/tests/pngunknown-IDAT -------------------------------------------------------------------------------- /third-party/lpng1639/tests/pngunknown-sAPI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/tests/pngunknown-sAPI -------------------------------------------------------------------------------- /third-party/lpng1639/tests/pngunknown-sTER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/tests/pngunknown-sTER -------------------------------------------------------------------------------- /third-party/lpng1639/tests/pngunknown-save: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/tests/pngunknown-save -------------------------------------------------------------------------------- /third-party/lpng1639/tests/pngunknown-vpAg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liz3/ledit/HEAD/third-party/lpng1639/tests/pngunknown-vpAg -------------------------------------------------------------------------------- /third-party/lpng1639/tests/pngvalid-gamma-16-to-8: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec ./pngvalid --strict --gamma-16-to-8 3 | -------------------------------------------------------------------------------- /third-party/lpng1639/tests/pngvalid-gamma-alpha-mode: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec ./pngvalid --strict --gamma-alpha-mode 3 | -------------------------------------------------------------------------------- /third-party/lpng1639/tests/pngvalid-gamma-background: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec ./pngvalid --strict --gamma-background 3 | -------------------------------------------------------------------------------- /third-party/lpng1639/tests/pngvalid-gamma-sbit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec ./pngvalid --strict --gamma-sbit 3 | -------------------------------------------------------------------------------- /third-party/lpng1639/tests/pngvalid-gamma-threshold: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec ./pngvalid --strict --gamma-threshold 3 | -------------------------------------------------------------------------------- /third-party/lpng1639/tests/pngvalid-gamma-transform: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec ./pngvalid --strict --gamma-transform 3 | -------------------------------------------------------------------------------- /third-party/lpng1639/tests/pngvalid-transform: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec ./pngvalid --strict --transform 3 | --------------------------------------------------------------------------------