├── .github ├── FUNDING.yml └── workflows │ ├── android-cpp.yml │ ├── arm-linux.yml │ ├── cmake-multi-platform.yml │ ├── code_format_check.yml │ ├── fedora-linux-cpp.yml │ ├── macosx-cpp.yml │ ├── ubuntu-linux-cpp.yml │ ├── webassembly.yml │ └── windows-cpp.yml ├── .gitignore ├── AUTHORS ├── CMakeLists.txt ├── CREDITS ├── ChangeLog ├── Doxyfile ├── LICENSE ├── README ├── README.md ├── cfg ├── OFL.txt ├── ZCOOLXiaoWei-Regular.ttf └── font_config.cfg ├── demos ├── android │ └── platform_android.cpp ├── clock.c ├── clock.png ├── demos.cmake ├── flowers.c ├── flowers.png ├── gis.png ├── gtk2 │ └── platform_gtk2.c ├── interface.h ├── mac │ ├── Info.plist │ ├── Main.storyboard │ └── platform_apple.m ├── qt4 │ └── platform_qt4.cpp ├── subwaymap.c ├── tiger.c ├── tiger.png ├── timeuse.h └── win32 │ └── platform_win32.c ├── doc ├── html │ ├── annotated.html │ ├── bc_s.png │ ├── bdwn.png │ ├── classes.html │ ├── closed.png │ ├── dir_892610d5edbf830e6c6730bec4a58394.html │ ├── dir_d44c64559bbebec7f509842c48db8b23.html │ ├── dir_d801abec1c0e9fc3c2d045948c0b993a.html │ ├── doc.png │ ├── doxygen.css │ ├── doxygen.png │ ├── dynsections.js │ ├── files.html │ ├── folderclosed.png │ ├── folderopen.png │ ├── functions.html │ ├── functions_vars.html │ ├── globals.html │ ├── globals_c.html │ ├── globals_d.html │ ├── globals_defs.html │ ├── globals_enum.html │ ├── globals_eval.html │ ├── globals_f.html │ ├── globals_func.html │ ├── globals_g.html │ ├── globals_i.html │ ├── globals_l.html │ ├── globals_m.html │ ├── globals_p.html │ ├── globals_s.html │ ├── globals_t.html │ ├── globals_type.html │ ├── globals_w.html │ ├── group__attr.html │ ├── group__canvas.html │ ├── group__clip.html │ ├── group__coder.html │ ├── group__common.html │ ├── group__context.html │ ├── group__data.html │ ├── group__drawing.html │ ├── group__extension.html │ ├── group__extimg.html │ ├── group__extsvg.html │ ├── group__fill.html │ ├── group__font.html │ ├── group__functions.html │ ├── group__geometry.html │ ├── group__gradient.html │ ├── group__graphic.html │ ├── group__image.html │ ├── group__imgfunctions.html │ ├── group__imgtypes.html │ ├── group__interface.html │ ├── group__mask.html │ ├── group__matrix.html │ ├── group__objects.html │ ├── group__paint.html │ ├── group__path.html │ ├── group__pattern.html │ ├── group__shadow.html │ ├── group__state.html │ ├── group__stroke.html │ ├── group__svgfunctions.html │ ├── group__svgtypes.html │ ├── group__text.html │ ├── group__transform.html │ ├── group__types.html │ ├── index.html │ ├── jquery.js │ ├── menu.js │ ├── menudata.js │ ├── modules.html │ ├── nav_f.png │ ├── nav_g.png │ ├── nav_h.png │ ├── open.png │ ├── picasso_8h.html │ ├── picasso_8h_source.html │ ├── picasso__ext_8h.html │ ├── picasso__ext_8h_source.html │ ├── psx__image_8h.html │ ├── psx__image_8h_source.html │ ├── psx__image__plugin_8h.html │ ├── psx__image__plugin_8h_source.html │ ├── psx__svg_8h.html │ ├── psx__svg_8h_source.html │ ├── splitbar.png │ ├── struct__ps__color.html │ ├── struct__ps__font__info.html │ ├── struct__ps__glyph.html │ ├── struct__ps__point.html │ ├── struct__ps__rect.html │ ├── struct__ps__size.html │ ├── struct__psx__image.html │ ├── struct__psx__image__frame.html │ ├── struct__psx__image__header.html │ ├── struct__psx__image__operator.html │ ├── sync_off.png │ ├── sync_on.png │ ├── tab_a.png │ ├── tab_b.png │ ├── tab_h.png │ ├── tab_s.png │ └── tabs.css ├── latex │ ├── Makefile │ ├── annotated.tex │ ├── doxygen.sty │ ├── files.tex │ ├── group__attr.tex │ ├── group__canvas.tex │ ├── group__clip.tex │ ├── group__coder.tex │ ├── group__common.tex │ ├── group__context.tex │ ├── group__data.tex │ ├── group__drawing.tex │ ├── group__extension.tex │ ├── group__extimg.tex │ ├── group__extsvg.tex │ ├── group__fill.tex │ ├── group__font.tex │ ├── group__functions.tex │ ├── group__geometry.tex │ ├── group__gradient.tex │ ├── group__graphic.tex │ ├── group__image.tex │ ├── group__imgfunctions.tex │ ├── group__imgtypes.tex │ ├── group__interface.tex │ ├── group__mask.tex │ ├── group__matrix.tex │ ├── group__objects.tex │ ├── group__paint.tex │ ├── group__path.tex │ ├── group__pattern.tex │ ├── group__shadow.tex │ ├── group__state.tex │ ├── group__stroke.tex │ ├── group__svgfunctions.tex │ ├── group__svgtypes.tex │ ├── group__text.tex │ ├── group__transform.tex │ ├── group__types.tex │ ├── longtable_doxygen.sty │ ├── modules.tex │ ├── picasso_8h.tex │ ├── picasso__ext_8h.tex │ ├── psx__image_8h.tex │ ├── psx__image__plugin_8h.tex │ ├── psx__svg_8h.tex │ ├── refman.tex │ ├── struct__ps__color.tex │ ├── struct__ps__font__info.tex │ ├── struct__ps__glyph.tex │ ├── struct__ps__point.tex │ ├── struct__ps__rect.tex │ ├── struct__ps__size.tex │ ├── struct__psx__image.tex │ ├── struct__psx__image__frame.tex │ ├── struct__psx__image__header.tex │ ├── struct__psx__image__operator.tex │ └── tabu_doxygen.sty └── man │ └── man3 │ ├── _ps_color.3 │ ├── _ps_font_info.3 │ ├── _ps_glyph.3 │ ├── _ps_point.3 │ ├── _ps_rect.3 │ ├── _ps_size.3 │ ├── _psx_image.3 │ ├── _psx_image_frame.3 │ ├── _psx_image_header.3 │ ├── _psx_image_operator.3 │ ├── attr.3 │ ├── canvas.3 │ ├── clip.3 │ ├── coder.3 │ ├── common.3 │ ├── context.3 │ ├── data.3 │ ├── drawing.3 │ ├── extension.3 │ ├── extimg.3 │ ├── extsvg.3 │ ├── fill.3 │ ├── font.3 │ ├── functions.3 │ ├── geometry.3 │ ├── gradient.3 │ ├── graphic.3 │ ├── image.3 │ ├── imgfunctions.3 │ ├── imgtypes.3 │ ├── interface.3 │ ├── mask.3 │ ├── matrix.3 │ ├── objects.3 │ ├── paint.3 │ ├── path.3 │ ├── pattern.3 │ ├── picasso.h.3 │ ├── picasso_ext.h.3 │ ├── psx_image.h.3 │ ├── psx_image_plugin.h.3 │ ├── psx_svg.h.3 │ ├── shadow.3 │ ├── state.3 │ ├── stroke.3 │ ├── svgfunctions.3 │ ├── svgtypes.3 │ ├── text.3 │ ├── transform.3 │ └── types.3 ├── ext ├── common │ ├── common.cmake │ ├── psx_array.h │ ├── psx_common.c │ ├── psx_common.h │ ├── psx_file.c │ ├── psx_file.h │ ├── psx_linear_allocator.c │ ├── psx_linear_allocator.h │ ├── psx_list.h │ └── psx_tree.h ├── ext.cmake ├── image_coders │ ├── apple │ │ ├── apple.cmake │ │ └── images_module.m │ ├── gif │ │ ├── gif.cmake │ │ └── gif_module.c │ ├── image.cmake │ ├── jpeg │ │ ├── jpeg.cmake │ │ └── jpeg_module.c │ ├── png │ │ ├── png.cmake │ │ └── png_module.c │ ├── psx_color_convert.h │ ├── psx_image.def │ ├── psx_image.rc │ ├── psx_image_io.c │ ├── psx_image_io.h │ ├── psx_image_loader.c │ ├── psx_image_loader.h │ ├── psx_image_modules.c │ ├── psx_image_modules.h │ ├── resource.h │ └── webp │ │ ├── webp.cmake │ │ └── webp_module.c └── svg │ ├── psx_svg.cpp │ ├── psx_svg.def │ ├── psx_svg.rc │ ├── psx_svg_module.c │ ├── psx_svg_node.cpp │ ├── psx_svg_node.h │ ├── psx_svg_parser.cpp │ ├── psx_svg_parser.h │ ├── psx_svg_render.cpp │ ├── psx_svg_render.h │ ├── psx_xml_token.cpp │ ├── psx_xml_token.h │ ├── resource.h │ └── svg.cmake ├── include ├── images │ ├── psx_image.h │ └── psx_image_plugin.h ├── include.cmake ├── picasso.h ├── picasso_ext.h └── svg │ └── psx_svg.h ├── perf_tests ├── perf_tests.cmake ├── ps_matrix.cpp ├── test.cpp ├── test.h └── timeuse.h ├── src ├── core │ ├── clipper.cpp │ ├── curve.cpp │ ├── device.cpp │ ├── graphic_path.cpp │ └── matrix.cpp ├── font │ ├── font_adapter.h │ ├── font_adapter_apple.mm │ ├── font_adapter_dummy.cpp │ ├── font_adapter_freetype2.cpp │ ├── font_adapter_win32.cpp │ └── font_load_freetype2.cpp ├── gfx │ ├── gfx_blender_packed.h │ ├── gfx_blur.cpp │ ├── gfx_blur.h │ ├── gfx_composite_packed.h │ ├── gfx_device.cpp │ ├── gfx_device.h │ ├── gfx_gamma_function.h │ ├── gfx_gradient_adapter.cpp │ ├── gfx_gradient_adapter.h │ ├── gfx_image_accessors.h │ ├── gfx_image_filters.cpp │ ├── gfx_image_filters.h │ ├── gfx_line_generator.h │ ├── gfx_mask_layer.h │ ├── gfx_painter.h │ ├── gfx_painter_helper.h │ ├── gfx_pixfmt_gray.h │ ├── gfx_pixfmt_rgb.h │ ├── gfx_pixfmt_rgb16.h │ ├── gfx_pixfmt_rgba.h │ ├── gfx_pixfmt_wrapper.h │ ├── gfx_raster_adapter.cpp │ ├── gfx_raster_adapter.h │ ├── gfx_rasterizer_cell.h │ ├── gfx_rasterizer_scanline.h │ ├── gfx_renderer.h │ ├── gfx_rendering_buffer.cpp │ ├── gfx_rendering_buffer.h │ ├── gfx_scanline.h │ ├── gfx_scanline_renderer.h │ ├── gfx_scanline_storage.h │ ├── gfx_span_generator.h │ └── gfx_span_image_filters.h ├── include │ ├── clipper.h │ ├── color_type.h │ ├── common.h │ ├── convert.h │ ├── curve.h │ ├── data_vector.h │ ├── device.h │ ├── fastcopy.h │ ├── fastfill.h │ ├── fixedopt.h │ ├── geometry.h │ ├── graphic_base.h │ ├── graphic_helper.h │ ├── graphic_path.h │ ├── interfaces.h │ ├── math_type.h │ ├── matrix.h │ ├── memory_manager.h │ ├── non_copy.h │ ├── platform.h │ ├── vertex.h │ └── vertex_dist.h ├── picasso.def ├── picasso.rc ├── picasso_api.cpp ├── picasso_canvas.cpp ├── picasso_font.cpp ├── picasso_font.h ├── picasso_font_api.cpp ├── picasso_font_cache.h ├── picasso_global.h ├── picasso_gradient.cpp ├── picasso_gradient.h ├── picasso_gradient_api.cpp ├── picasso_image.cpp ├── picasso_mask.cpp ├── picasso_mask.h ├── picasso_mask_api.cpp ├── picasso_matrix_api.cpp ├── picasso_objects.h ├── picasso_painter.cpp ├── picasso_painter.h ├── picasso_path.cpp ├── picasso_pattern.cpp ├── picasso_private.h ├── picasso_raster_adapter.cpp ├── picasso_raster_adapter.h ├── picasso_rendering_buffer.cpp ├── picasso_rendering_buffer.h ├── resource.h ├── simd │ ├── fastcopy_sse.h │ ├── fastfill16_neon.S │ └── fastfill32_neon.S └── src.cmake ├── test ├── alpha_func.c ├── android │ ├── AndroidManifest.xml │ ├── pat565.h │ ├── project.properties │ ├── res │ │ └── values │ │ │ └── strings.xml │ ├── selt2565.h │ └── testAndroid.cpp ├── bitblt_func.c ├── blur_func.c ├── clip_func.c ├── composite_func.c ├── drawFunc.h ├── drawmask_func.c ├── font_config.cfg ├── gamma_func.c ├── gcstate_func.c ├── gles2 │ ├── glut.h │ ├── glut_xwin.h │ └── testGLES2.c ├── gradient_func.c ├── gtk2 │ └── testGtk2.c ├── image_info.c ├── image_view.c ├── mac │ ├── Info.plist │ └── testMac.m ├── mask_func.c ├── part_func.c ├── pat.bmp ├── pat.png ├── pat565.bmp ├── path_func.c ├── pattern_func.c ├── posix │ └── thr_posix.c ├── qt4 │ └── testQt4.cpp ├── selt.bmp ├── selt.png ├── selt2.bmp ├── selt2.png ├── selt2565.bmp ├── shadow_func.c ├── sung.ttf ├── test.cmake ├── text_func.c ├── thread_func.c ├── timeuse.h └── win32 │ ├── testWin.c │ └── thr_win32.c ├── third_party ├── expat-2.1.0 │ ├── Android.mk │ ├── CleanSpec.mk │ ├── MANIFEST │ ├── NOTICE │ ├── README │ ├── expat_config.h │ ├── jni │ │ ├── Android.mk │ │ └── Application.mk │ └── lib │ │ ├── Makefile.MPW │ │ ├── amigaconfig.h │ │ ├── ascii.h │ │ ├── asciitab.h │ │ ├── expat.dsp │ │ ├── expat.h │ │ ├── expat_external.h │ │ ├── expat_static.dsp │ │ ├── expatw.dsp │ │ ├── expatw_static.dsp │ │ ├── iasciitab.h │ │ ├── internal.h │ │ ├── latin1tab.h │ │ ├── libexpat.def │ │ ├── libexpatw.def │ │ ├── macconfig.h │ │ ├── nametab.h │ │ ├── utf8tab.h │ │ ├── winconfig.h │ │ ├── xmlparse.c │ │ ├── xmlrole.c │ │ ├── xmlrole.h │ │ ├── xmltok.c │ │ ├── xmltok.h │ │ ├── xmltok_impl.c │ │ ├── xmltok_impl.h │ │ └── xmltok_ns.c ├── expat.cmake ├── freetype-2.3.6 │ ├── Android.mk │ ├── NOTICE │ ├── builds │ │ └── ft2unix.h │ ├── include │ │ ├── freetype │ │ │ ├── config │ │ │ │ ├── ftconfig.h │ │ │ │ ├── ftheader.h │ │ │ │ ├── ftmodule.h │ │ │ │ ├── ftoption.h │ │ │ │ └── ftstdlib.h │ │ │ ├── freetype.h │ │ │ ├── ftadvanc.h │ │ │ ├── ftbbox.h │ │ │ ├── ftbdf.h │ │ │ ├── ftbitmap.h │ │ │ ├── ftcache.h │ │ │ ├── ftchapters.h │ │ │ ├── ftcid.h │ │ │ ├── fterrdef.h │ │ │ ├── fterrors.h │ │ │ ├── ftgasp.h │ │ │ ├── ftglyph.h │ │ │ ├── ftgxval.h │ │ │ ├── ftgzip.h │ │ │ ├── ftimage.h │ │ │ ├── ftincrem.h │ │ │ ├── ftlcdfil.h │ │ │ ├── ftlist.h │ │ │ ├── ftlzw.h │ │ │ ├── ftmac.h │ │ │ ├── ftmm.h │ │ │ ├── ftmodapi.h │ │ │ ├── ftmoderr.h │ │ │ ├── ftotval.h │ │ │ ├── ftoutln.h │ │ │ ├── ftpfr.h │ │ │ ├── ftrender.h │ │ │ ├── ftsizes.h │ │ │ ├── ftsnames.h │ │ │ ├── ftstroke.h │ │ │ ├── ftsynth.h │ │ │ ├── ftsystem.h │ │ │ ├── fttrigon.h │ │ │ ├── fttypes.h │ │ │ ├── ftwinfnt.h │ │ │ ├── ftxf86.h │ │ │ ├── internal │ │ │ │ ├── autohint.h │ │ │ │ ├── ftcalc.h │ │ │ │ ├── ftdebug.h │ │ │ │ ├── ftdriver.h │ │ │ │ ├── ftgloadr.h │ │ │ │ ├── ftmemory.h │ │ │ │ ├── ftobjs.h │ │ │ │ ├── ftrfork.h │ │ │ │ ├── ftserv.h │ │ │ │ ├── ftstream.h │ │ │ │ ├── fttrace.h │ │ │ │ ├── ftvalid.h │ │ │ │ ├── internal.h │ │ │ │ ├── pcftypes.h │ │ │ │ ├── psaux.h │ │ │ │ ├── pshints.h │ │ │ │ ├── services │ │ │ │ │ ├── svbdf.h │ │ │ │ │ ├── svcid.h │ │ │ │ │ ├── svgldict.h │ │ │ │ │ ├── svgxval.h │ │ │ │ │ ├── svkern.h │ │ │ │ │ ├── svmm.h │ │ │ │ │ ├── svotval.h │ │ │ │ │ ├── svpfr.h │ │ │ │ │ ├── svpostnm.h │ │ │ │ │ ├── svpscmap.h │ │ │ │ │ ├── svpsinfo.h │ │ │ │ │ ├── svsfnt.h │ │ │ │ │ ├── svttcmap.h │ │ │ │ │ ├── svtteng.h │ │ │ │ │ ├── svttglyf.h │ │ │ │ │ ├── svwinfnt.h │ │ │ │ │ └── svxf86nm.h │ │ │ │ ├── sfnt.h │ │ │ │ ├── t1types.h │ │ │ │ └── tttypes.h │ │ │ ├── t1tables.h │ │ │ ├── ttnameid.h │ │ │ ├── tttables.h │ │ │ ├── tttags.h │ │ │ └── ttunpat.h │ │ └── ft2build.h │ ├── jni │ │ ├── Android.mk │ │ └── Application.mk │ └── src │ │ ├── autofit │ │ ├── afangles.c │ │ ├── afangles.h │ │ ├── afcjk.c │ │ ├── afcjk.h │ │ ├── afdummy.c │ │ ├── afdummy.h │ │ ├── aferrors.h │ │ ├── afglobal.c │ │ ├── afglobal.h │ │ ├── afhints.c │ │ ├── afhints.h │ │ ├── afindic.c │ │ ├── afindic.h │ │ ├── aflatin.c │ │ ├── aflatin.h │ │ ├── aflatin2.c │ │ ├── aflatin2.h │ │ ├── afloader.c │ │ ├── afloader.h │ │ ├── afmodule.c │ │ ├── afmodule.h │ │ ├── aftypes.h │ │ ├── afwarp.c │ │ ├── afwarp.h │ │ └── autofit.c │ │ ├── base │ │ ├── ftadvanc.c │ │ ├── ftapi.c │ │ ├── ftbase.c │ │ ├── ftbbox.c │ │ ├── ftbitmap.c │ │ ├── ftcalc.c │ │ ├── ftdbgmem.c │ │ ├── ftdebug.c │ │ ├── ftgasp.c │ │ ├── ftgloadr.c │ │ ├── ftglyph.c │ │ ├── ftinit.c │ │ ├── ftlcdfil.c │ │ ├── ftmm.c │ │ ├── ftnames.c │ │ ├── ftobjs.c │ │ ├── ftoutln.c │ │ ├── ftpatent.c │ │ ├── ftrfork.c │ │ ├── ftstream.c │ │ ├── ftstroke.c │ │ ├── ftsynth.c │ │ ├── ftsystem.c │ │ ├── fttrigon.c │ │ ├── ftutil.c │ │ ├── ftwinfnt.c │ │ └── ftxf86.c │ │ ├── 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 │ │ └── cfftypes.h │ │ ├── psaux │ │ ├── afmparse.c │ │ ├── afmparse.h │ │ ├── psaux.c │ │ ├── psauxerr.h │ │ ├── psauxmod.c │ │ ├── psauxmod.h │ │ ├── psconv.c │ │ ├── psconv.h │ │ ├── psobjs.c │ │ ├── psobjs.h │ │ ├── t1cmap.c │ │ ├── t1cmap.h │ │ ├── t1decode.c │ │ └── t1decode.h │ │ ├── pshinter │ │ ├── pshalgo.c │ │ ├── pshalgo.h │ │ ├── pshglob.c │ │ ├── pshglob.h │ │ ├── pshinter.c │ │ ├── pshmod.c │ │ ├── pshmod.h │ │ ├── pshnterr.h │ │ ├── pshrec.c │ │ └── pshrec.h │ │ ├── psnames │ │ ├── psmodule.c │ │ ├── psmodule.h │ │ ├── psnamerr.h │ │ ├── psnames.c │ │ └── pstables.h │ │ ├── raster │ │ ├── ftmisc.h │ │ ├── ftraster.c │ │ ├── ftraster.h │ │ ├── ftrend1.c │ │ ├── ftrend1.h │ │ ├── raster.c │ │ └── rasterrs.h │ │ ├── sfnt │ │ ├── sfdriver.c │ │ ├── sfdriver.h │ │ ├── sferrors.h │ │ ├── sfnt.c │ │ ├── sfobjs.c │ │ ├── sfobjs.h │ │ ├── ttbdf.c │ │ ├── ttbdf.h │ │ ├── ttcmap.c │ │ ├── ttcmap.h │ │ ├── ttkern.c │ │ ├── ttkern.h │ │ ├── ttload.c │ │ ├── ttload.h │ │ ├── ttmtx.c │ │ ├── ttmtx.h │ │ ├── ttpost.c │ │ ├── ttpost.h │ │ ├── ttsbit.c │ │ ├── ttsbit.h │ │ └── ttsbit0.c │ │ ├── smooth │ │ ├── ftgrays.c │ │ ├── ftgrays.h │ │ ├── ftsmerrs.h │ │ ├── ftsmooth.c │ │ ├── ftsmooth.h │ │ └── smooth.c │ │ └── truetype │ │ ├── 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 ├── freetype.cmake ├── giflib-5.1.3 │ ├── AUTHORS │ ├── BUGS │ ├── COPYING │ ├── ChangeLog │ ├── INSTALL │ ├── Makefile.am │ ├── Makefile.unx │ ├── NEWS │ ├── README │ ├── TODO │ ├── aclocal.m4 │ ├── ar-lib │ ├── autogen.sh │ ├── build.asc │ ├── compile │ ├── config.guess │ ├── config.h.in │ ├── config.sub │ ├── configure │ ├── configure.ac │ ├── control │ ├── depcomp │ ├── doc │ │ ├── 00README │ │ ├── Makefile.am │ │ ├── gif2rgb.1 │ │ ├── gif2rgb.xml │ │ ├── gif87.txt │ │ ├── gif89.txt │ │ ├── gif_lib.xml │ │ ├── gifbg.1 │ │ ├── gifbg.xml │ │ ├── gifbuild.1 │ │ ├── gifbuild.xml │ │ ├── gifclrmp.1 │ │ ├── gifclrmp.xml │ │ ├── gifcolor.1 │ │ ├── gifcolor.xml │ │ ├── gifecho.1 │ │ ├── gifecho.xml │ │ ├── giffix.1 │ │ ├── giffix.xml │ │ ├── gifhisto.1 │ │ ├── gifhisto.xml │ │ ├── gifinto.1 │ │ ├── gifinto.xml │ │ ├── giflib.1 │ │ ├── giflib.xml │ │ ├── giftext.1 │ │ ├── giftext.xml │ │ ├── giftool.1 │ │ ├── giftool.xml │ │ ├── gifwedge.1 │ │ ├── gifwedge.xml │ │ ├── intro.xml │ │ ├── lzgif.txt │ │ └── whatsinagif │ │ │ ├── animation_and_transparency.html │ │ │ ├── bits_and_bytes.html │ │ │ ├── index.html │ │ │ ├── lzw_image_data.html │ │ │ └── lzw_image_data_code_table.html │ ├── gif_lib.def │ ├── history.asc │ ├── install-sh │ ├── lib │ │ ├── Makefile.am │ │ ├── Makefile.unx │ │ ├── dgif_lib.c │ │ ├── egif_lib.c │ │ ├── gif_err.c │ │ ├── gif_font.c │ │ ├── gif_hash.c │ │ ├── gif_hash.h │ │ ├── gif_lib.h │ │ ├── gif_lib_private.h │ │ ├── gifalloc.c │ │ ├── openbsd-reallocarray.c │ │ └── quantize.c │ ├── ltmain.sh │ ├── m4 │ │ ├── libtool.m4 │ │ ├── ltoptions.m4 │ │ ├── ltsugar.m4 │ │ ├── ltversion.m4 │ │ └── lt~obsolete.m4 │ ├── missing │ ├── pic │ │ ├── Makefile.am │ │ ├── NOTES │ │ └── sample.ico │ ├── test-driver │ ├── test.sh │ ├── tests │ │ ├── fire.dmp │ │ ├── fire.map │ │ ├── foobar.ico │ │ ├── giffixed.ico │ │ ├── gifgrid.dmp │ │ ├── gifgrid.ico │ │ ├── gifgrid.map │ │ ├── makefile │ │ ├── porsche.dmp │ │ ├── porsche.map │ │ ├── solid2.dmp │ │ ├── solid2.map │ │ ├── treescap-interlaced.dmp │ │ ├── treescap-interlaced.map │ │ ├── treescap.dmp │ │ ├── treescap.ico │ │ ├── treescap.map │ │ ├── welcome2.dmp │ │ ├── welcome2.map │ │ ├── welcome2.rgb │ │ ├── x-trans.dmp │ │ ├── x-trans.map │ │ └── x-trans.rgb │ └── util │ │ ├── Makefile.am │ │ ├── Makefile.unx │ │ ├── getarg.c │ │ ├── getarg.h │ │ ├── gif2rgb.c │ │ ├── gifbg.c │ │ ├── gifbuild.c │ │ ├── gifclrmp.c │ │ ├── gifcolor.c │ │ ├── gifecho.c │ │ ├── giffilter.c │ │ ├── giffix.c │ │ ├── gifhisto.c │ │ ├── gifinto.c │ │ ├── gifsponge.c │ │ ├── giftext.c │ │ ├── giftool.c │ │ ├── gifwedge.c │ │ └── qprintf.c ├── giflib.cmake ├── libjpeg-turbo-1.4.1 │ ├── BUILDING.txt │ ├── CMakeLists.txt │ ├── ChangeLog.txt │ ├── Makefile.am │ ├── README │ ├── README-turbo.txt │ ├── acinclude.m4 │ ├── aclocal.m4 │ ├── bmp.c │ ├── bmp.h │ ├── build │ │ ├── jconfig.h │ │ └── jconfigint.h │ ├── cderror.h │ ├── cdjpeg.c │ ├── cdjpeg.h │ ├── change.log │ ├── cjpeg.1 │ ├── cjpeg.c │ ├── cmakescripts │ │ ├── md5cmp.cmake │ │ └── testclean.cmake │ ├── coderules.txt │ ├── compile │ ├── config.guess │ ├── config.h.in │ ├── config.sub │ ├── configure │ ├── configure.ac │ ├── depcomp │ ├── djpeg.1 │ ├── djpeg.c │ ├── doc │ │ └── html │ │ │ ├── annotated.html │ │ │ ├── classes.html │ │ │ ├── doxygen-extra.css │ │ │ ├── doxygen.css │ │ │ ├── dynsections.js │ │ │ ├── functions.html │ │ │ ├── functions_vars.html │ │ │ ├── group___turbo_j_p_e_g.html │ │ │ ├── index.html │ │ │ ├── jquery.js │ │ │ ├── modules.html │ │ │ ├── search │ │ │ ├── all_63.html │ │ │ ├── all_63.js │ │ │ ├── all_64.html │ │ │ ├── all_64.js │ │ │ ├── all_68.html │ │ │ ├── all_68.js │ │ │ ├── all_6e.html │ │ │ ├── all_6e.js │ │ │ ├── all_6f.html │ │ │ ├── all_6f.js │ │ │ ├── all_72.html │ │ │ ├── all_72.js │ │ │ ├── all_74.html │ │ │ ├── all_74.js │ │ │ ├── all_77.html │ │ │ ├── all_77.js │ │ │ ├── all_78.html │ │ │ ├── all_78.js │ │ │ ├── all_79.html │ │ │ ├── all_79.js │ │ │ ├── classes_74.html │ │ │ ├── classes_74.js │ │ │ ├── enums_74.html │ │ │ ├── enums_74.js │ │ │ ├── enumvalues_74.html │ │ │ ├── enumvalues_74.js │ │ │ ├── functions_74.html │ │ │ ├── functions_74.js │ │ │ ├── groups_74.html │ │ │ ├── groups_74.js │ │ │ ├── nomatches.html │ │ │ ├── search.css │ │ │ ├── search.js │ │ │ ├── typedefs_74.html │ │ │ ├── typedefs_74.js │ │ │ ├── variables_63.html │ │ │ ├── variables_63.js │ │ │ ├── variables_64.html │ │ │ ├── variables_64.js │ │ │ ├── variables_68.html │ │ │ ├── variables_68.js │ │ │ ├── variables_6e.html │ │ │ ├── variables_6e.js │ │ │ ├── variables_6f.html │ │ │ ├── variables_6f.js │ │ │ ├── variables_72.html │ │ │ ├── variables_72.js │ │ │ ├── variables_74.html │ │ │ ├── variables_74.js │ │ │ ├── variables_77.html │ │ │ ├── variables_77.js │ │ │ ├── variables_78.html │ │ │ ├── variables_78.js │ │ │ ├── variables_79.html │ │ │ └── variables_79.js │ │ │ ├── structtjregion.html │ │ │ ├── structtjscalingfactor.html │ │ │ ├── structtjtransform.html │ │ │ └── tabs.css │ ├── doxygen-extra.css │ ├── doxygen.config │ ├── example.c │ ├── install-sh │ ├── jaricom.c │ ├── java │ │ ├── CMakeLists.txt │ │ ├── MANIFEST.MF │ │ ├── Makefile.am │ │ ├── README │ │ ├── TJBench.java │ │ ├── TJExample.java │ │ ├── TJUnitTest.java │ │ ├── doc │ │ │ ├── allclasses-frame.html │ │ │ ├── allclasses-noframe.html │ │ │ ├── constant-values.html │ │ │ ├── deprecated-list.html │ │ │ ├── help-doc.html │ │ │ ├── index-all.html │ │ │ ├── index.html │ │ │ ├── org │ │ │ │ └── libjpegturbo │ │ │ │ │ └── turbojpeg │ │ │ │ │ ├── TJ.html │ │ │ │ │ ├── TJCompressor.html │ │ │ │ │ ├── TJCustomFilter.html │ │ │ │ │ ├── TJDecompressor.html │ │ │ │ │ ├── TJScalingFactor.html │ │ │ │ │ ├── TJTransform.html │ │ │ │ │ ├── TJTransformer.html │ │ │ │ │ ├── YUVImage.html │ │ │ │ │ ├── package-frame.html │ │ │ │ │ ├── package-summary.html │ │ │ │ │ └── package-tree.html │ │ │ ├── overview-tree.html │ │ │ ├── package-list │ │ │ ├── serialized-form.html │ │ │ └── stylesheet.css │ │ ├── org │ │ │ └── libjpegturbo │ │ │ │ └── turbojpeg │ │ │ │ ├── TJ.java │ │ │ │ ├── TJCompressor.java │ │ │ │ ├── TJCustomFilter.java │ │ │ │ ├── TJDecompressor.java │ │ │ │ ├── TJLoader.java.in │ │ │ │ ├── TJLoader.java.tmpl │ │ │ │ ├── TJScalingFactor.java │ │ │ │ ├── TJTransform.java │ │ │ │ ├── TJTransformer.java │ │ │ │ └── YUVImage.java │ │ ├── org_libjpegturbo_turbojpeg_TJ.h │ │ ├── org_libjpegturbo_turbojpeg_TJCompressor.h │ │ ├── org_libjpegturbo_turbojpeg_TJDecompressor.h │ │ └── org_libjpegturbo_turbojpeg_TJTransformer.h │ ├── jcapimin.c │ ├── jcapistd.c │ ├── jcarith.c │ ├── jccoefct.c │ ├── jccolext.c │ ├── jccolor.c │ ├── jcdctmgr.c │ ├── jchuff.c │ ├── jchuff.h │ ├── jcinit.c │ ├── jcmainct.c │ ├── jcmarker.c │ ├── jcmaster.c │ ├── jcomapi.c │ ├── jconfig.h.in │ ├── jconfig.txt │ ├── jconfigint.h.in │ ├── jcparam.c │ ├── jcphuff.c │ ├── jcprepct.c │ ├── jcsample.c │ ├── jcstest.c │ ├── jctrans.c │ ├── jdapimin.c │ ├── jdapistd.c │ ├── jdarith.c │ ├── jdatadst-tj.c │ ├── jdatadst.c │ ├── jdatasrc-tj.c │ ├── jdatasrc.c │ ├── jdcoefct.c │ ├── jdcol565.c │ ├── jdcolext.c │ ├── jdcolor.c │ ├── jdct.h │ ├── jddctmgr.c │ ├── jdhuff.c │ ├── jdhuff.h │ ├── jdinput.c │ ├── jdmainct.c │ ├── jdmarker.c │ ├── jdmaster.c │ ├── jdmerge.c │ ├── jdmrg565.c │ ├── jdmrgext.c │ ├── jdphuff.c │ ├── jdpostct.c │ ├── jdsample.c │ ├── jdtrans.c │ ├── jerror.c │ ├── jerror.h │ ├── jfdctflt.c │ ├── jfdctfst.c │ ├── jfdctint.c │ ├── jidctflt.c │ ├── jidctfst.c │ ├── jidctint.c │ ├── jidctred.c │ ├── jinclude.h │ ├── jmemmgr.c │ ├── jmemnobs.c │ ├── jmemsys.h │ ├── jmorecfg.h │ ├── jpeg_nbits_table.h │ ├── jpegcomp.h │ ├── jpegint.h │ ├── jpeglib.h │ ├── jpegtran.1 │ ├── jpegtran.c │ ├── jquant1.c │ ├── jquant2.c │ ├── jsimd.h │ ├── jsimd_none.c │ ├── jsimddct.h │ ├── jstdhuff.c │ ├── jutils.c │ ├── jversion.h │ ├── libjpeg.map.in │ ├── libjpeg.txt │ ├── ltmain.sh │ ├── md5 │ │ ├── Makefile.am │ │ ├── md5.c │ │ ├── md5.h │ │ ├── md5cmp.c │ │ └── md5hl.c │ ├── missing │ ├── rdbmp.c │ ├── rdcolmap.c │ ├── rdgif.c │ ├── rdjpgcom.1 │ ├── rdjpgcom.c │ ├── rdppm.c │ ├── rdrle.c │ ├── rdswitch.c │ ├── rdtarga.c │ ├── release │ │ ├── Distribution.xml │ │ ├── License.rtf │ │ ├── ReadMe.txt │ │ ├── Welcome.rtf │ │ ├── deb-control.tmpl │ │ ├── libjpeg-turbo.nsi.in │ │ ├── libjpeg-turbo.spec.in │ │ ├── makecygwinpkg.in │ │ ├── makedpkg.in │ │ ├── makemacpkg.in │ │ └── uninstall.in │ ├── sharedlib │ │ └── CMakeLists.txt │ ├── simd │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── jccolext-mmx.asm │ │ ├── jccolext-sse2-64.asm │ │ ├── jccolext-sse2.asm │ │ ├── jccolor-mmx.asm │ │ ├── jccolor-sse2-64.asm │ │ ├── jccolor-sse2.asm │ │ ├── jcgray-mmx.asm │ │ ├── jcgray-sse2-64.asm │ │ ├── jcgray-sse2.asm │ │ ├── jcgryext-mmx.asm │ │ ├── jcgryext-sse2-64.asm │ │ ├── jcgryext-sse2.asm │ │ ├── jcolsamp.inc │ │ ├── jcsample-mmx.asm │ │ ├── jcsample-sse2-64.asm │ │ ├── jcsample-sse2.asm │ │ ├── jdcolext-mmx.asm │ │ ├── jdcolext-sse2-64.asm │ │ ├── jdcolext-sse2.asm │ │ ├── jdcolor-mmx.asm │ │ ├── jdcolor-sse2-64.asm │ │ ├── jdcolor-sse2.asm │ │ ├── jdct.inc │ │ ├── jdmerge-mmx.asm │ │ ├── jdmerge-sse2-64.asm │ │ ├── jdmerge-sse2.asm │ │ ├── jdmrgext-mmx.asm │ │ ├── jdmrgext-sse2-64.asm │ │ ├── jdmrgext-sse2.asm │ │ ├── jdsample-mmx.asm │ │ ├── jdsample-sse2-64.asm │ │ ├── jdsample-sse2.asm │ │ ├── jfdctflt-3dn.asm │ │ ├── jfdctflt-sse-64.asm │ │ ├── jfdctflt-sse.asm │ │ ├── jfdctfst-mmx.asm │ │ ├── jfdctfst-sse2-64.asm │ │ ├── jfdctfst-sse2.asm │ │ ├── jfdctint-mmx.asm │ │ ├── jfdctint-sse2-64.asm │ │ ├── jfdctint-sse2.asm │ │ ├── jidctflt-3dn.asm │ │ ├── jidctflt-sse.asm │ │ ├── jidctflt-sse2-64.asm │ │ ├── jidctflt-sse2.asm │ │ ├── jidctfst-mmx.asm │ │ ├── jidctfst-sse2-64.asm │ │ ├── jidctfst-sse2.asm │ │ ├── jidctint-mmx.asm │ │ ├── jidctint-sse2-64.asm │ │ ├── jidctint-sse2.asm │ │ ├── jidctred-mmx.asm │ │ ├── jidctred-sse2-64.asm │ │ ├── jidctred-sse2.asm │ │ ├── jquant-3dn.asm │ │ ├── jquant-mmx.asm │ │ ├── jquant-sse.asm │ │ ├── jquantf-sse2-64.asm │ │ ├── jquantf-sse2.asm │ │ ├── jquanti-sse2-64.asm │ │ ├── jquanti-sse2.asm │ │ ├── jsimd.h │ │ ├── jsimd_arm.c │ │ ├── jsimd_arm64.c │ │ ├── jsimd_arm64_neon.S │ │ ├── jsimd_arm_neon.S │ │ ├── jsimd_i386.c │ │ ├── jsimd_mips.c │ │ ├── jsimd_mips_dspr2.S │ │ ├── jsimd_mips_dspr2_asm.h │ │ ├── jsimd_x86_64.c │ │ ├── jsimdcfg.inc.h │ │ ├── jsimdcpu.asm │ │ ├── jsimdext.inc │ │ └── nasm_lt.sh │ ├── structure.txt │ ├── testimages │ │ ├── nightshot_iso_100.txt │ │ └── testorig.ppm │ ├── tjbench.c │ ├── tjbenchtest.in │ ├── tjbenchtest.java.in │ ├── tjexampletest.in │ ├── tjunittest.c │ ├── tjutil.c │ ├── tjutil.h │ ├── transupp.c │ ├── transupp.h │ ├── turbojpeg-jni.c │ ├── turbojpeg-mapfile │ ├── turbojpeg-mapfile.jni │ ├── turbojpeg.c │ ├── turbojpeg.h │ ├── usage.txt │ ├── win │ │ ├── jconfig.h.in │ │ ├── jconfigint.h.in │ │ ├── jpeg62-memsrcdst.def │ │ ├── jpeg62.def │ │ ├── jpeg7-memsrcdst.def │ │ ├── jpeg7.def │ │ ├── jpeg8.def │ │ └── jsimdcfg.inc │ ├── wizard.txt │ ├── wrbmp.c │ ├── wrgif.c │ ├── wrjpgcom.1 │ ├── wrjpgcom.c │ ├── wrppm.c │ ├── wrrle.c │ └── wrtarga.c ├── libjpeg.cmake ├── libpng-1.6.17 │ ├── ANNOUNCE │ ├── CHANGES │ ├── CMakeLists.txt │ ├── INSTALL │ ├── LICENSE │ ├── Makefile.am │ ├── README │ ├── TODO │ ├── aclocal.m4 │ ├── arm │ │ ├── arm_init.c │ │ ├── filter_neon.S │ │ └── filter_neon_intrinsics.c │ ├── autogen.sh │ ├── compile │ ├── config.guess │ ├── config.h.in │ ├── config.sub │ ├── configure │ ├── configure.ac │ ├── contrib │ │ ├── README.txt │ │ ├── arm-neon │ │ │ ├── README │ │ │ ├── android-ndk.c │ │ │ ├── linux-auxv.c │ │ │ └── linux.c │ │ ├── conftest │ │ │ ├── README │ │ │ ├── read.dfa │ │ │ ├── s_read.dfa │ │ │ ├── s_write.dfa │ │ │ ├── simple.dfa │ │ │ └── write.dfa │ │ ├── examples │ │ │ ├── README.txt │ │ │ ├── iccfrompng.c │ │ │ ├── pngpixel.c │ │ │ └── pngtopng.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 │ │ │ ├── wpng.c │ │ │ ├── writepng.c │ │ │ └── writepng.h │ │ ├── libtests │ │ │ ├── fakepng.c │ │ │ ├── gentests.sh │ │ │ ├── makepng.c │ │ │ ├── pngimage.c │ │ │ ├── pngstest.c │ │ │ ├── pngunknown.c │ │ │ ├── pngvalid.c │ │ │ ├── readpng.c │ │ │ ├── tarith.c │ │ │ └── timepng.c │ │ ├── pngminim │ │ │ ├── README │ │ │ ├── decoder │ │ │ │ ├── README │ │ │ │ ├── makefile │ │ │ │ ├── pngusr.dfa │ │ │ │ └── pngusr.h │ │ │ ├── encoder │ │ │ │ ├── README │ │ │ │ ├── makefile │ │ │ │ ├── pngusr.dfa │ │ │ │ └── pngusr.h │ │ │ └── preader │ │ │ │ ├── README │ │ │ │ ├── makefile │ │ │ │ ├── pngusr.dfa │ │ │ │ └── pngusr.h │ │ ├── pngminus │ │ │ ├── README │ │ │ ├── makefile.std │ │ │ ├── makefile.tc3 │ │ │ ├── makevms.com │ │ │ ├── png2pnm.bat │ │ │ ├── png2pnm.c │ │ │ ├── png2pnm.sh │ │ │ ├── pngminus.bat │ │ │ ├── pngminus.sh │ │ │ ├── pnm2png.bat │ │ │ ├── pnm2png.c │ │ │ └── pnm2png.sh │ │ ├── pngsuite │ │ │ └── README │ │ ├── tools │ │ │ ├── README.txt │ │ │ ├── checksum-icc.c │ │ │ ├── chkfmt │ │ │ ├── cvtcolor.c │ │ │ ├── intgamma.sh │ │ │ ├── makesRGB.c │ │ │ ├── png-fix-itxt.c │ │ │ ├── pngfix.c │ │ │ └── sRGB.h │ │ └── visupng │ │ │ ├── PngFile.c │ │ │ ├── PngFile.h │ │ │ ├── README.txt │ │ │ ├── VisualPng.c │ │ │ ├── VisualPng.dsp │ │ │ ├── VisualPng.dsw │ │ │ ├── VisualPng.rc │ │ │ ├── cexcept.h │ │ │ └── resource.h │ ├── depcomp │ ├── example.c │ ├── install-sh │ ├── libpng-config.in │ ├── libpng-manual.txt │ ├── libpng.3 │ ├── libpng.pc.in │ ├── libpngpf.3 │ ├── ltmain.sh │ ├── missing │ ├── png.5 │ ├── png.c │ ├── png.h │ ├── pngconf.h │ ├── pngdebug.h │ ├── pngerror.c │ ├── pngget.c │ ├── pnginfo.h │ ├── pngmem.c │ ├── pngpread.c │ ├── pngpriv.h │ ├── pngread.c │ ├── pngrio.c │ ├── pngrtran.c │ ├── pngrutil.c │ ├── pngset.c │ ├── pngstruct.h │ ├── pngtest.c │ ├── pngtrans.c │ ├── pngusr.dfa │ ├── pngwio.c │ ├── pngwrite.c │ ├── pngwtran.c │ ├── pngwutil.c │ ├── projects │ │ ├── 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 │ │ │ ├── WARNING │ │ │ ├── libpng │ │ │ └── libpng.vcxproj │ │ │ ├── pnglibconf │ │ │ └── pnglibconf.vcxproj │ │ │ ├── pngstest │ │ │ └── pngstest.vcxproj │ │ │ ├── pngtest │ │ │ └── pngtest.vcxproj │ │ │ ├── pngunknown │ │ │ └── pngunknown.vcxproj │ │ │ ├── pngvalid │ │ │ └── pngvalid.vcxproj │ │ │ ├── readme.txt │ │ │ ├── vstudio.sln │ │ │ ├── zlib.props │ │ │ └── zlib │ │ │ └── zlib.vcxproj │ ├── scripts │ │ ├── README.txt │ │ ├── SCOPTIONS.ppc │ │ ├── checksym.awk │ │ ├── def.c │ │ ├── descrip.mms │ │ ├── dfn.awk │ │ ├── intprefix.c │ │ ├── libpng-config-body.in │ │ ├── libpng-config-head.in │ │ ├── libpng.pc.in │ │ ├── libtool.m4 │ │ ├── ltoptions.m4 │ │ ├── ltsugar.m4 │ │ ├── ltversion.m4 │ │ ├── lt~obsolete.m4 │ │ ├── macro.lst │ │ ├── makefile.32sunu │ │ ├── makefile.64sunu │ │ ├── makefile.acorn │ │ ├── makefile.aix │ │ ├── makefile.amiga │ │ ├── makefile.atari │ │ ├── makefile.bc32 │ │ ├── makefile.beos │ │ ├── makefile.bor │ │ ├── makefile.cegcc │ │ ├── makefile.darwin │ │ ├── makefile.dec │ │ ├── makefile.dj2 │ │ ├── makefile.freebsd │ │ ├── makefile.gcc │ │ ├── makefile.hp64 │ │ ├── makefile.hpgcc │ │ ├── makefile.hpux │ │ ├── makefile.ibmc │ │ ├── makefile.intel │ │ ├── makefile.knr │ │ ├── makefile.linux │ │ ├── makefile.mips │ │ ├── makefile.msc │ │ ├── makefile.msys │ │ ├── makefile.ne12bsd │ │ ├── makefile.netbsd │ │ ├── makefile.openbsd │ │ ├── makefile.sco │ │ ├── makefile.sggcc │ │ ├── makefile.sgi │ │ ├── makefile.so9 │ │ ├── makefile.solaris │ │ ├── makefile.solaris-x86 │ │ ├── makefile.std │ │ ├── makefile.sunos │ │ ├── makefile.tc3 │ │ ├── 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 │ │ ├── pngstest-0g01 │ │ ├── pngstest-0g02 │ │ ├── pngstest-0g04 │ │ ├── pngstest-0g08 │ │ ├── pngstest-0g16 │ │ ├── pngstest-2c08 │ │ ├── pngstest-2c16 │ │ ├── pngstest-3p01 │ │ ├── pngstest-3p02 │ │ ├── pngstest-3p04 │ │ ├── pngstest-3p08 │ │ ├── pngstest-4a08 │ │ ├── pngstest-4a16 │ │ ├── pngstest-6a08 │ │ ├── pngstest-6a16 │ │ ├── pngstest-error │ │ ├── pngtest │ │ ├── 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-size │ │ ├── pngvalid-progressive-interlace-standard │ │ ├── pngvalid-progressive-interlace-transform │ │ ├── pngvalid-progressive-standard │ │ └── pngvalid-standard ├── libpng.cmake ├── libwebp-0.5.1 │ ├── AUTHORS │ ├── Android.mk │ ├── CMakeLists.txt │ ├── COPYING │ ├── ChangeLog │ ├── Makefile.am │ ├── Makefile.vc │ ├── NEWS │ ├── PATENTS │ ├── README │ ├── README.mux │ ├── autogen.sh │ ├── build.gradle │ ├── cmake │ │ └── config.h.in │ ├── configure.ac │ ├── doc │ │ ├── README │ │ ├── TODO │ │ ├── template.html │ │ ├── webp-container-spec.txt │ │ └── webp-lossless-bitstream-spec.txt │ ├── examples │ │ ├── Android.mk │ │ ├── Makefile.am │ │ ├── anim_diff.c │ │ ├── anim_util.c │ │ ├── anim_util.h │ │ ├── cwebp.c │ │ ├── dwebp.c │ │ ├── example_util.c │ │ ├── example_util.h │ │ ├── gif2webp.c │ │ ├── gifdec.c │ │ ├── gifdec.h │ │ ├── image_dec.c │ │ ├── image_dec.h │ │ ├── jpegdec.c │ │ ├── jpegdec.h │ │ ├── metadata.c │ │ ├── metadata.h │ │ ├── pngdec.c │ │ ├── pngdec.h │ │ ├── stopwatch.h │ │ ├── test_ref.ppm │ │ ├── tiffdec.c │ │ ├── tiffdec.h │ │ ├── vwebp.c │ │ ├── webpdec.c │ │ ├── webpdec.h │ │ ├── webpmux.c │ │ ├── wicdec.c │ │ └── wicdec.h │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── iosbuild.sh │ ├── m4 │ │ └── ax_pthread.m4 │ ├── makefile.unix │ ├── man │ │ ├── Makefile.am │ │ ├── cwebp.1 │ │ ├── dwebp.1 │ │ ├── gif2webp.1 │ │ ├── vwebp.1 │ │ └── webpmux.1 │ ├── src │ │ ├── Makefile.am │ │ ├── dec │ │ │ ├── Makefile.am │ │ │ ├── alpha.c │ │ │ ├── alphai.h │ │ │ ├── buffer.c │ │ │ ├── common.h │ │ │ ├── decode_vp8.h │ │ │ ├── frame.c │ │ │ ├── idec.c │ │ │ ├── io.c │ │ │ ├── quant.c │ │ │ ├── tree.c │ │ │ ├── vp8.c │ │ │ ├── vp8i.h │ │ │ ├── vp8l.c │ │ │ ├── vp8li.h │ │ │ ├── webp.c │ │ │ └── webpi.h │ │ ├── demux │ │ │ ├── Makefile.am │ │ │ ├── anim_decode.c │ │ │ ├── demux.c │ │ │ └── libwebpdemux.pc.in │ │ ├── dsp │ │ │ ├── Makefile.am │ │ │ ├── alpha_processing.c │ │ │ ├── alpha_processing_mips_dsp_r2.c │ │ │ ├── alpha_processing_sse2.c │ │ │ ├── alpha_processing_sse41.c │ │ │ ├── argb.c │ │ │ ├── argb_mips_dsp_r2.c │ │ │ ├── argb_sse2.c │ │ │ ├── common_sse2.h │ │ │ ├── cost_mips32.c │ │ │ ├── cost_mips_dsp_r2.c │ │ │ ├── cost_sse2.c │ │ │ ├── cpu.c │ │ │ ├── dcost.c │ │ │ ├── dec.c │ │ │ ├── dec_clip_tables.c │ │ │ ├── dec_mips32.c │ │ │ ├── dec_mips_dsp_r2.c │ │ │ ├── dec_msa.c │ │ │ ├── dec_neon.c │ │ │ ├── dec_sse2.c │ │ │ ├── dec_sse41.c │ │ │ ├── dfilters.c │ │ │ ├── drescaler.c │ │ │ ├── dsp.h │ │ │ ├── enc.c │ │ │ ├── enc_avx2.c │ │ │ ├── enc_mips32.c │ │ │ ├── enc_mips_dsp_r2.c │ │ │ ├── enc_neon.c │ │ │ ├── enc_sse2.c │ │ │ ├── enc_sse41.c │ │ │ ├── filters_mips_dsp_r2.c │ │ │ ├── filters_sse2.c │ │ │ ├── lossless.c │ │ │ ├── lossless.h │ │ │ ├── lossless_enc.c │ │ │ ├── lossless_enc_mips32.c │ │ │ ├── lossless_enc_mips_dsp_r2.c │ │ │ ├── lossless_enc_neon.c │ │ │ ├── lossless_enc_sse2.c │ │ │ ├── lossless_enc_sse41.c │ │ │ ├── lossless_mips_dsp_r2.c │ │ │ ├── lossless_neon.c │ │ │ ├── lossless_sse2.c │ │ │ ├── mips_macro.h │ │ │ ├── msa_macro.h │ │ │ ├── neon.h │ │ │ ├── rescaler_mips32.c │ │ │ ├── rescaler_mips_dsp_r2.c │ │ │ ├── rescaler_neon.c │ │ │ ├── rescaler_sse2.c │ │ │ ├── upsampling.c │ │ │ ├── upsampling_mips_dsp_r2.c │ │ │ ├── upsampling_neon.c │ │ │ ├── upsampling_sse2.c │ │ │ ├── yuv.c │ │ │ ├── yuv.h │ │ │ ├── yuv_mips32.c │ │ │ ├── yuv_mips_dsp_r2.c │ │ │ └── yuv_sse2.c │ │ ├── enc │ │ │ ├── Makefile.am │ │ │ ├── analysis.c │ │ │ ├── backward_references.c │ │ │ ├── backward_references.h │ │ │ ├── config.c │ │ │ ├── cost.c │ │ │ ├── cost.h │ │ │ ├── delta_palettization.c │ │ │ ├── delta_palettization.h │ │ │ ├── ealpha.c │ │ │ ├── eframe.c │ │ │ ├── equant.c │ │ │ ├── etree.c │ │ │ ├── evp8l.c │ │ │ ├── filter.c │ │ │ ├── histogram.c │ │ │ ├── histogram.h │ │ │ ├── iterator.c │ │ │ ├── near_lossless.c │ │ │ ├── picture.c │ │ │ ├── picture_csp.c │ │ │ ├── picture_psnr.c │ │ │ ├── picture_rescale.c │ │ │ ├── picture_tools.c │ │ │ ├── syntax.c │ │ │ ├── token.c │ │ │ ├── vp8enci.h │ │ │ ├── vp8li.h │ │ │ └── webpenc.c │ │ ├── extras │ │ │ ├── Makefile.am │ │ │ ├── extras.c │ │ │ └── libwebpextras.pc.in │ │ ├── libwebp.pc.in │ │ ├── libwebpdecoder.pc.in │ │ ├── mux │ │ │ ├── Makefile.am │ │ │ ├── anim_encode.c │ │ │ ├── libwebpmux.pc.in │ │ │ ├── muxedit.c │ │ │ ├── muxi.h │ │ │ ├── muxinternal.c │ │ │ └── muxread.c │ │ ├── utils │ │ │ ├── Makefile.am │ │ │ ├── bit_reader.c │ │ │ ├── bit_reader.h │ │ │ ├── bit_reader_inl.h │ │ │ ├── bit_writer.c │ │ │ ├── bit_writer.h │ │ │ ├── color_cache.c │ │ │ ├── color_cache.h │ │ │ ├── endian_inl.h │ │ │ ├── filters.c │ │ │ ├── filters.h │ │ │ ├── huffman.c │ │ │ ├── huffman.h │ │ │ ├── huffman_encode.c │ │ │ ├── huffman_encode.h │ │ │ ├── quant_levels.c │ │ │ ├── quant_levels.h │ │ │ ├── quant_levels_dec.c │ │ │ ├── quant_levels_dec.h │ │ │ ├── random.c │ │ │ ├── random.h │ │ │ ├── rescaler.c │ │ │ ├── rescaler.h │ │ │ ├── thread.c │ │ │ ├── thread.h │ │ │ ├── utils.c │ │ │ └── utils.h │ │ └── webp │ │ │ ├── decode.h │ │ │ ├── demux.h │ │ │ ├── encode.h │ │ │ ├── extras.h │ │ │ ├── format_constants.h │ │ │ ├── mux.h │ │ │ ├── mux_types.h │ │ │ └── types.h │ └── swig │ │ ├── README │ │ ├── libwebp.go │ │ ├── libwebp.py │ │ ├── libwebp.swig │ │ ├── libwebp_gc.c │ │ ├── libwebp_go_wrap.c │ │ ├── libwebp_java_wrap.c │ │ ├── libwebp_python_wrap.c │ │ └── setup.py ├── libwebp.cmake ├── third_party.cmake ├── zlib-1.2.8 │ ├── CMakeLists.txt │ ├── ChangeLog │ ├── FAQ │ ├── INDEX │ ├── README │ ├── adler32.c │ ├── amiga │ │ ├── Makefile.pup │ │ └── Makefile.sas │ ├── as400 │ │ ├── bndsrc │ │ ├── compile.clp │ │ ├── readme.txt │ │ └── zlib.inc │ ├── compress.c │ ├── configure │ ├── contrib │ │ ├── README.contrib │ │ ├── ada │ │ │ ├── buffer_demo.adb │ │ │ ├── mtest.adb │ │ │ ├── read.adb │ │ │ ├── readme.txt │ │ │ ├── test.adb │ │ │ ├── zlib-streams.adb │ │ │ ├── zlib-streams.ads │ │ │ ├── zlib-thin.adb │ │ │ ├── zlib-thin.ads │ │ │ ├── zlib.adb │ │ │ ├── zlib.ads │ │ │ └── zlib.gpr │ │ ├── amd64 │ │ │ └── amd64-match.S │ │ ├── asm686 │ │ │ ├── README.686 │ │ │ └── match.S │ │ ├── blast │ │ │ ├── README │ │ │ ├── blast.c │ │ │ ├── blast.h │ │ │ └── test.txt │ │ ├── delphi │ │ │ ├── ZLib.pas │ │ │ ├── ZLibConst.pas │ │ │ ├── readme.txt │ │ │ └── zlibd32.mak │ │ ├── dotzlib │ │ │ ├── DotZLib.build │ │ │ ├── DotZLib.sln │ │ │ ├── DotZLib │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── ChecksumImpl.cs │ │ │ │ ├── CircularBuffer.cs │ │ │ │ ├── CodecBase.cs │ │ │ │ ├── Deflater.cs │ │ │ │ ├── DotZLib.cs │ │ │ │ ├── DotZLib.csproj │ │ │ │ ├── GZipStream.cs │ │ │ │ ├── Inflater.cs │ │ │ │ └── UnitTests.cs │ │ │ ├── LICENSE_1_0.txt │ │ │ └── readme.txt │ │ ├── gcc_gvmat64 │ │ │ └── gvmat64.S │ │ ├── infback9 │ │ │ ├── README │ │ │ ├── infback9.c │ │ │ ├── infback9.h │ │ │ ├── inffix9.h │ │ │ ├── inflate9.h │ │ │ ├── inftree9.c │ │ │ └── inftree9.h │ │ ├── inflate86 │ │ │ ├── inffas86.c │ │ │ └── inffast.S │ │ ├── iostream │ │ │ ├── test.cpp │ │ │ ├── zfstream.cpp │ │ │ └── zfstream.h │ │ ├── iostream2 │ │ │ ├── zstream.h │ │ │ └── zstream_test.cpp │ │ ├── iostream3 │ │ │ ├── README │ │ │ ├── TODO │ │ │ ├── test.cc │ │ │ ├── zfstream.cc │ │ │ └── zfstream.h │ │ ├── masmx64 │ │ │ ├── bld_ml64.bat │ │ │ ├── gvmat64.asm │ │ │ ├── inffas8664.c │ │ │ ├── inffasx64.asm │ │ │ └── readme.txt │ │ ├── masmx86 │ │ │ ├── bld_ml32.bat │ │ │ ├── inffas32.asm │ │ │ ├── match686.asm │ │ │ └── readme.txt │ │ ├── minizip │ │ │ ├── Makefile.am │ │ │ ├── MiniZip64_Changes.txt │ │ │ ├── MiniZip64_info.txt │ │ │ ├── configure.ac │ │ │ ├── crypt.h │ │ │ ├── ioapi.c │ │ │ ├── ioapi.h │ │ │ ├── iowin32.c │ │ │ ├── iowin32.h │ │ │ ├── make_vms.com │ │ │ ├── miniunz.c │ │ │ ├── miniunzip.1 │ │ │ ├── minizip.1 │ │ │ ├── minizip.c │ │ │ ├── minizip.pc.in │ │ │ ├── mztools.c │ │ │ ├── mztools.h │ │ │ ├── unzip.c │ │ │ ├── unzip.h │ │ │ ├── zip.c │ │ │ └── zip.h │ │ ├── pascal │ │ │ ├── example.pas │ │ │ ├── readme.txt │ │ │ ├── zlibd32.mak │ │ │ └── zlibpas.pas │ │ ├── puff │ │ │ ├── README │ │ │ ├── puff.c │ │ │ ├── puff.h │ │ │ └── pufftest.c │ │ ├── testzlib │ │ │ ├── testzlib.c │ │ │ └── testzlib.txt │ │ ├── untgz │ │ │ ├── Makefile.msc │ │ │ └── untgz.c │ │ └── vstudio │ │ │ ├── readme.txt │ │ │ ├── vc10 │ │ │ ├── miniunz.vcxproj │ │ │ ├── miniunz.vcxproj.filters │ │ │ ├── minizip.vcxproj │ │ │ ├── minizip.vcxproj.filters │ │ │ ├── testzlib.vcxproj │ │ │ ├── testzlib.vcxproj.filters │ │ │ ├── testzlibdll.vcxproj │ │ │ ├── testzlibdll.vcxproj.filters │ │ │ ├── zlib.rc │ │ │ ├── zlibstat.vcxproj │ │ │ ├── zlibstat.vcxproj.filters │ │ │ ├── zlibvc.def │ │ │ ├── zlibvc.sln │ │ │ ├── zlibvc.vcxproj │ │ │ └── zlibvc.vcxproj.filters │ │ │ ├── vc11 │ │ │ ├── miniunz.vcxproj │ │ │ ├── minizip.vcxproj │ │ │ ├── testzlib.vcxproj │ │ │ ├── testzlibdll.vcxproj │ │ │ ├── zlib.rc │ │ │ ├── zlibstat.vcxproj │ │ │ ├── zlibvc.def │ │ │ ├── zlibvc.sln │ │ │ └── zlibvc.vcxproj │ │ │ └── vc9 │ │ │ ├── miniunz.vcproj │ │ │ ├── minizip.vcproj │ │ │ ├── testzlib.vcproj │ │ │ ├── testzlibdll.vcproj │ │ │ ├── zlib.rc │ │ │ ├── zlibstat.vcproj │ │ │ ├── zlibvc.def │ │ │ ├── zlibvc.sln │ │ │ └── zlibvc.vcproj │ ├── crc32.c │ ├── crc32.h │ ├── deflate.c │ ├── deflate.h │ ├── doc │ │ ├── algorithm.txt │ │ ├── rfc1950.txt │ │ ├── rfc1951.txt │ │ ├── rfc1952.txt │ │ └── txtvsbin.txt │ ├── examples │ │ ├── README.examples │ │ ├── enough.c │ │ ├── fitblk.c │ │ ├── gun.c │ │ ├── gzappend.c │ │ ├── gzjoin.c │ │ ├── gzlog.c │ │ ├── gzlog.h │ │ ├── zlib_how.html │ │ ├── zpipe.c │ │ └── zran.c │ ├── gzclose.c │ ├── gzguts.h │ ├── gzlib.c │ ├── gzread.c │ ├── gzwrite.c │ ├── infback.c │ ├── inffast.c │ ├── inffast.h │ ├── inffixed.h │ ├── inflate.c │ ├── inflate.h │ ├── inftrees.c │ ├── inftrees.h │ ├── make_vms.com │ ├── msdos │ │ ├── Makefile.bor │ │ ├── Makefile.dj2 │ │ ├── Makefile.emx │ │ ├── Makefile.msc │ │ └── Makefile.tc │ ├── nintendods │ │ └── README │ ├── old │ │ ├── Makefile.emx │ │ ├── Makefile.riscos │ │ ├── README │ │ ├── descrip.mms │ │ ├── os2 │ │ │ ├── Makefile.os2 │ │ │ └── zlib.def │ │ └── visual-basic.txt │ ├── qnx │ │ └── package.qpg │ ├── test │ │ ├── example.c │ │ ├── infcover.c │ │ └── minigzip.c │ ├── treebuild.xml │ ├── trees.c │ ├── trees.h │ ├── uncompr.c │ ├── watcom │ │ ├── watcom_f.mak │ │ └── watcom_l.mak │ ├── win32 │ │ ├── DLL_FAQ.txt │ │ ├── Makefile.bor │ │ ├── Makefile.gcc │ │ ├── Makefile.msc │ │ ├── README-WIN32.txt │ │ ├── VisualC.txt │ │ ├── zlib.def │ │ └── zlib1.rc │ ├── zconf.h │ ├── zconf.h.cmakein │ ├── zconf.h.in │ ├── zlib.3 │ ├── zlib.h │ ├── zlib.map │ ├── zlib.pc.cmakein │ ├── zlib.pc.in │ ├── zlib2ansi │ ├── zutil.c │ └── zutil.h └── zlib.cmake ├── tools ├── astyle-3.4.10.tar.bz2 ├── code_format.sh ├── code_style.ini ├── cp.py ├── gen_covs.sh ├── license_template.txt ├── license_updater.py ├── math │ ├── fast_sqrt.c │ ├── fast_sqrt.h │ └── fast_sqrt_test.cpp ├── others_porting │ ├── platform_gix.c │ └── platform_minigui.c └── sponsor.png ├── unit_tests ├── ext_array.cpp ├── ext_linear_alloc.cpp ├── ext_list.cpp ├── ext_svg.cpp ├── ext_svg_api.cpp ├── ext_svg_render.cpp ├── ext_tree.cpp ├── ext_xml_token.cpp ├── ps_base_api.cpp ├── ps_canvas_api.cpp ├── ps_context_api.cpp ├── ps_matrix_api.cpp ├── ps_pod_vector.cpp ├── snapshots │ └── svg │ │ ├── svg_complex_10_linux_x86.png │ │ ├── svg_complex_1_apple_x86.png │ │ ├── svg_complex_1_linux_arm.png │ │ ├── svg_complex_1_linux_x86.png │ │ ├── svg_complex_2.png │ │ ├── svg_complex_3.png │ │ ├── svg_complex_4.png │ │ ├── svg_complex_5.png │ │ ├── svg_complex_6.png │ │ ├── svg_complex_7.png │ │ ├── svg_complex_8_apple_x86.png │ │ ├── svg_complex_8_linux_arm.png │ │ ├── svg_complex_8_linux_x86.png │ │ ├── svg_complex_9_linux_x86.png │ │ ├── svg_draw_tiger.png │ │ ├── svg_group_circle.png │ │ ├── svg_group_gradient.png │ │ ├── svg_group_inherit.png │ │ ├── svg_image_1.png │ │ ├── svg_image_10.png │ │ ├── svg_image_11.png │ │ ├── svg_image_12.png │ │ ├── svg_image_13.png │ │ ├── svg_image_2.png │ │ ├── svg_image_3.png │ │ ├── svg_image_4.png │ │ ├── svg_image_5.png │ │ ├── svg_image_6.png │ │ ├── svg_image_7.png │ │ ├── svg_image_8.png │ │ ├── svg_image_9.png │ │ ├── svg_linear_gradient.png │ │ ├── svg_rect_transform.png │ │ ├── svg_shapes.png │ │ ├── svg_shapes_linear.png │ │ ├── svg_shapes_linear2.png │ │ ├── svg_shapes_linear3.png │ │ ├── svg_shapes_linear4.png │ │ ├── svg_shapes_linear5.png │ │ ├── svg_shapes_linear6.png │ │ ├── svg_shapes_linear7.png │ │ ├── svg_shapes_radial.png │ │ ├── svg_shapes_solid_apple_x86.png │ │ ├── svg_shapes_solid_linux_arm.png │ │ ├── svg_shapes_solid_linux_x86.png │ │ ├── svg_shapes_svg2ext_arc1.png │ │ ├── svg_shapes_use_transform.png │ │ ├── svg_simple.png │ │ ├── svg_text_gradient_apple_x86.png │ │ ├── svg_text_gradient_linux_arm.png │ │ ├── svg_text_gradient_linux_x86.png │ │ ├── svg_text_tspan_apple_x86.png │ │ ├── svg_text_tspan_linux_arm.png │ │ ├── svg_text_tspan_linux_x86.png │ │ ├── svg_text_use_gradient_apple_x86.png │ │ ├── svg_text_use_gradient_linux_x86.png │ │ ├── svg_use_group.png │ │ ├── svg_use_simple.png │ │ ├── svg_viewport.png │ │ ├── svg_viewport_2_apple_x86.png │ │ ├── svg_viewport_2_linux_arm.png │ │ └── svg_viewport_2_linux_x86.png ├── test.cpp ├── test.h ├── test.png ├── tiger.svg └── unit_tests.cmake └── wasm ├── Makefile.em ├── build_wasm.sh ├── export.list ├── lib.js ├── pconfig.h ├── picasso.wasm ├── runtime.list ├── selt2.png └── test.html /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: onecoolx 2 | -------------------------------------------------------------------------------- /.github/workflows/android-cpp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/.github/workflows/android-cpp.yml -------------------------------------------------------------------------------- /.github/workflows/arm-linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/.github/workflows/arm-linux.yml -------------------------------------------------------------------------------- /.github/workflows/cmake-multi-platform.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/.github/workflows/cmake-multi-platform.yml -------------------------------------------------------------------------------- /.github/workflows/code_format_check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/.github/workflows/code_format_check.yml -------------------------------------------------------------------------------- /.github/workflows/fedora-linux-cpp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/.github/workflows/fedora-linux-cpp.yml -------------------------------------------------------------------------------- /.github/workflows/macosx-cpp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/.github/workflows/macosx-cpp.yml -------------------------------------------------------------------------------- /.github/workflows/ubuntu-linux-cpp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/.github/workflows/ubuntu-linux-cpp.yml -------------------------------------------------------------------------------- /.github/workflows/webassembly.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/.github/workflows/webassembly.yml -------------------------------------------------------------------------------- /.github/workflows/windows-cpp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/.github/workflows/windows-cpp.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | tags 2 | proj 3 | -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/AUTHORS -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/CREDITS -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/ChangeLog -------------------------------------------------------------------------------- /Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/Doxyfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/LICENSE -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/README -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/README.md -------------------------------------------------------------------------------- /cfg/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/cfg/OFL.txt -------------------------------------------------------------------------------- /cfg/ZCOOLXiaoWei-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/cfg/ZCOOLXiaoWei-Regular.ttf -------------------------------------------------------------------------------- /cfg/font_config.cfg: -------------------------------------------------------------------------------- 1 | [default] 2 | path=ZCOOLXiaoWei-Regular.ttf 3 | 4 | -------------------------------------------------------------------------------- /demos/android/platform_android.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/demos/android/platform_android.cpp -------------------------------------------------------------------------------- /demos/clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/demos/clock.c -------------------------------------------------------------------------------- /demos/clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/demos/clock.png -------------------------------------------------------------------------------- /demos/demos.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/demos/demos.cmake -------------------------------------------------------------------------------- /demos/flowers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/demos/flowers.c -------------------------------------------------------------------------------- /demos/flowers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/demos/flowers.png -------------------------------------------------------------------------------- /demos/gis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/demos/gis.png -------------------------------------------------------------------------------- /demos/gtk2/platform_gtk2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/demos/gtk2/platform_gtk2.c -------------------------------------------------------------------------------- /demos/interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/demos/interface.h -------------------------------------------------------------------------------- /demos/mac/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/demos/mac/Info.plist -------------------------------------------------------------------------------- /demos/mac/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/demos/mac/Main.storyboard -------------------------------------------------------------------------------- /demos/mac/platform_apple.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/demos/mac/platform_apple.m -------------------------------------------------------------------------------- /demos/qt4/platform_qt4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/demos/qt4/platform_qt4.cpp -------------------------------------------------------------------------------- /demos/subwaymap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/demos/subwaymap.c -------------------------------------------------------------------------------- /demos/tiger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/demos/tiger.c -------------------------------------------------------------------------------- /demos/tiger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/demos/tiger.png -------------------------------------------------------------------------------- /demos/timeuse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/demos/timeuse.h -------------------------------------------------------------------------------- /demos/win32/platform_win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/demos/win32/platform_win32.c -------------------------------------------------------------------------------- /doc/html/annotated.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/html/annotated.html -------------------------------------------------------------------------------- /doc/html/bc_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/html/bc_s.png -------------------------------------------------------------------------------- /doc/html/bdwn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/html/bdwn.png -------------------------------------------------------------------------------- /doc/html/classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/html/classes.html -------------------------------------------------------------------------------- /doc/html/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/html/closed.png -------------------------------------------------------------------------------- /doc/html/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/html/doc.png -------------------------------------------------------------------------------- /doc/html/doxygen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/html/doxygen.css -------------------------------------------------------------------------------- /doc/html/doxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/html/doxygen.png -------------------------------------------------------------------------------- /doc/html/dynsections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/html/dynsections.js -------------------------------------------------------------------------------- /doc/html/files.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/html/files.html -------------------------------------------------------------------------------- /doc/html/folderclosed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/html/folderclosed.png -------------------------------------------------------------------------------- /doc/html/folderopen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/html/folderopen.png -------------------------------------------------------------------------------- /doc/html/functions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/html/functions.html -------------------------------------------------------------------------------- /doc/html/functions_vars.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/html/functions_vars.html -------------------------------------------------------------------------------- /doc/html/globals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/html/globals.html -------------------------------------------------------------------------------- /doc/html/globals_c.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/html/globals_c.html -------------------------------------------------------------------------------- /doc/html/globals_d.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/html/globals_d.html -------------------------------------------------------------------------------- /doc/html/globals_defs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/html/globals_defs.html -------------------------------------------------------------------------------- /doc/html/globals_enum.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/html/globals_enum.html -------------------------------------------------------------------------------- /doc/html/globals_eval.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/html/globals_eval.html -------------------------------------------------------------------------------- /doc/html/globals_f.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/html/globals_f.html -------------------------------------------------------------------------------- /doc/html/globals_func.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/html/globals_func.html -------------------------------------------------------------------------------- /doc/html/globals_g.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/html/globals_g.html -------------------------------------------------------------------------------- /doc/html/globals_i.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/html/globals_i.html -------------------------------------------------------------------------------- /doc/html/globals_l.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/html/globals_l.html -------------------------------------------------------------------------------- /doc/html/globals_m.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/html/globals_m.html -------------------------------------------------------------------------------- /doc/html/globals_p.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/html/globals_p.html -------------------------------------------------------------------------------- /doc/html/globals_s.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/html/globals_s.html -------------------------------------------------------------------------------- /doc/html/globals_t.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/html/globals_t.html -------------------------------------------------------------------------------- /doc/html/globals_type.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/html/globals_type.html -------------------------------------------------------------------------------- /doc/html/globals_w.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/html/globals_w.html -------------------------------------------------------------------------------- /doc/html/group__attr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/html/group__attr.html -------------------------------------------------------------------------------- /doc/html/group__canvas.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/html/group__canvas.html -------------------------------------------------------------------------------- /doc/html/group__clip.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/html/group__clip.html -------------------------------------------------------------------------------- /doc/html/group__coder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/html/group__coder.html -------------------------------------------------------------------------------- /doc/html/group__common.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/html/group__common.html -------------------------------------------------------------------------------- /doc/html/group__context.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/html/group__context.html -------------------------------------------------------------------------------- /doc/html/group__data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/html/group__data.html -------------------------------------------------------------------------------- /doc/html/group__drawing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/html/group__drawing.html -------------------------------------------------------------------------------- /doc/html/group__extension.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/html/group__extension.html -------------------------------------------------------------------------------- /doc/html/group__extimg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/html/group__extimg.html -------------------------------------------------------------------------------- /doc/html/group__extsvg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/html/group__extsvg.html -------------------------------------------------------------------------------- /doc/html/group__fill.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/html/group__fill.html -------------------------------------------------------------------------------- /doc/html/group__font.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/html/group__font.html -------------------------------------------------------------------------------- /doc/html/group__functions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/html/group__functions.html -------------------------------------------------------------------------------- /doc/html/group__geometry.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/html/group__geometry.html -------------------------------------------------------------------------------- /doc/html/group__gradient.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/html/group__gradient.html -------------------------------------------------------------------------------- /doc/html/group__graphic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/html/group__graphic.html -------------------------------------------------------------------------------- /doc/html/group__image.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/html/group__image.html -------------------------------------------------------------------------------- /doc/html/group__imgfunctions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/html/group__imgfunctions.html -------------------------------------------------------------------------------- /doc/html/group__imgtypes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/html/group__imgtypes.html -------------------------------------------------------------------------------- /doc/html/group__interface.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/html/group__interface.html -------------------------------------------------------------------------------- /doc/html/group__mask.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/html/group__mask.html -------------------------------------------------------------------------------- /doc/html/group__matrix.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/html/group__matrix.html -------------------------------------------------------------------------------- /doc/html/group__objects.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/html/group__objects.html -------------------------------------------------------------------------------- /doc/html/group__paint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/html/group__paint.html -------------------------------------------------------------------------------- /doc/html/group__path.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/html/group__path.html -------------------------------------------------------------------------------- /doc/html/group__pattern.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/html/group__pattern.html -------------------------------------------------------------------------------- /doc/html/group__shadow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/html/group__shadow.html -------------------------------------------------------------------------------- /doc/html/group__state.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/html/group__state.html -------------------------------------------------------------------------------- /doc/html/group__stroke.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/html/group__stroke.html -------------------------------------------------------------------------------- /doc/html/group__svgfunctions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/html/group__svgfunctions.html -------------------------------------------------------------------------------- /doc/html/group__svgtypes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/html/group__svgtypes.html -------------------------------------------------------------------------------- /doc/html/group__text.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/html/group__text.html -------------------------------------------------------------------------------- /doc/html/group__transform.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/html/group__transform.html -------------------------------------------------------------------------------- /doc/html/group__types.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/html/group__types.html -------------------------------------------------------------------------------- /doc/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/html/index.html -------------------------------------------------------------------------------- /doc/html/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/html/jquery.js -------------------------------------------------------------------------------- /doc/html/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/html/menu.js -------------------------------------------------------------------------------- /doc/html/menudata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/html/menudata.js -------------------------------------------------------------------------------- /doc/html/modules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/html/modules.html -------------------------------------------------------------------------------- /doc/html/nav_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/html/nav_f.png -------------------------------------------------------------------------------- /doc/html/nav_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/html/nav_g.png -------------------------------------------------------------------------------- /doc/html/nav_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/html/nav_h.png -------------------------------------------------------------------------------- /doc/html/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/html/open.png -------------------------------------------------------------------------------- /doc/html/picasso_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/html/picasso_8h.html -------------------------------------------------------------------------------- /doc/html/picasso_8h_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/html/picasso_8h_source.html -------------------------------------------------------------------------------- /doc/html/picasso__ext_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/html/picasso__ext_8h.html -------------------------------------------------------------------------------- /doc/html/picasso__ext_8h_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/html/picasso__ext_8h_source.html -------------------------------------------------------------------------------- /doc/html/psx__image_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/html/psx__image_8h.html -------------------------------------------------------------------------------- /doc/html/psx__image_8h_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/html/psx__image_8h_source.html -------------------------------------------------------------------------------- /doc/html/psx__image__plugin_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/html/psx__image__plugin_8h.html -------------------------------------------------------------------------------- /doc/html/psx__image__plugin_8h_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/html/psx__image__plugin_8h_source.html -------------------------------------------------------------------------------- /doc/html/psx__svg_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/html/psx__svg_8h.html -------------------------------------------------------------------------------- /doc/html/psx__svg_8h_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/html/psx__svg_8h_source.html -------------------------------------------------------------------------------- /doc/html/splitbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/html/splitbar.png -------------------------------------------------------------------------------- /doc/html/struct__ps__color.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/html/struct__ps__color.html -------------------------------------------------------------------------------- /doc/html/struct__ps__font__info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/html/struct__ps__font__info.html -------------------------------------------------------------------------------- /doc/html/struct__ps__glyph.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/html/struct__ps__glyph.html -------------------------------------------------------------------------------- /doc/html/struct__ps__point.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/html/struct__ps__point.html -------------------------------------------------------------------------------- /doc/html/struct__ps__rect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/html/struct__ps__rect.html -------------------------------------------------------------------------------- /doc/html/struct__ps__size.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/html/struct__ps__size.html -------------------------------------------------------------------------------- /doc/html/struct__psx__image.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/html/struct__psx__image.html -------------------------------------------------------------------------------- /doc/html/struct__psx__image__frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/html/struct__psx__image__frame.html -------------------------------------------------------------------------------- /doc/html/struct__psx__image__header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/html/struct__psx__image__header.html -------------------------------------------------------------------------------- /doc/html/struct__psx__image__operator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/html/struct__psx__image__operator.html -------------------------------------------------------------------------------- /doc/html/sync_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/html/sync_off.png -------------------------------------------------------------------------------- /doc/html/sync_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/html/sync_on.png -------------------------------------------------------------------------------- /doc/html/tab_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/html/tab_a.png -------------------------------------------------------------------------------- /doc/html/tab_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/html/tab_b.png -------------------------------------------------------------------------------- /doc/html/tab_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/html/tab_h.png -------------------------------------------------------------------------------- /doc/html/tab_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/html/tab_s.png -------------------------------------------------------------------------------- /doc/html/tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/html/tabs.css -------------------------------------------------------------------------------- /doc/latex/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/latex/Makefile -------------------------------------------------------------------------------- /doc/latex/annotated.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/latex/annotated.tex -------------------------------------------------------------------------------- /doc/latex/doxygen.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/latex/doxygen.sty -------------------------------------------------------------------------------- /doc/latex/files.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/latex/files.tex -------------------------------------------------------------------------------- /doc/latex/group__attr.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/latex/group__attr.tex -------------------------------------------------------------------------------- /doc/latex/group__canvas.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/latex/group__canvas.tex -------------------------------------------------------------------------------- /doc/latex/group__clip.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/latex/group__clip.tex -------------------------------------------------------------------------------- /doc/latex/group__coder.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/latex/group__coder.tex -------------------------------------------------------------------------------- /doc/latex/group__common.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/latex/group__common.tex -------------------------------------------------------------------------------- /doc/latex/group__context.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/latex/group__context.tex -------------------------------------------------------------------------------- /doc/latex/group__data.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/latex/group__data.tex -------------------------------------------------------------------------------- /doc/latex/group__drawing.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/latex/group__drawing.tex -------------------------------------------------------------------------------- /doc/latex/group__extension.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/latex/group__extension.tex -------------------------------------------------------------------------------- /doc/latex/group__extimg.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/latex/group__extimg.tex -------------------------------------------------------------------------------- /doc/latex/group__extsvg.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/latex/group__extsvg.tex -------------------------------------------------------------------------------- /doc/latex/group__fill.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/latex/group__fill.tex -------------------------------------------------------------------------------- /doc/latex/group__font.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/latex/group__font.tex -------------------------------------------------------------------------------- /doc/latex/group__functions.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/latex/group__functions.tex -------------------------------------------------------------------------------- /doc/latex/group__geometry.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/latex/group__geometry.tex -------------------------------------------------------------------------------- /doc/latex/group__gradient.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/latex/group__gradient.tex -------------------------------------------------------------------------------- /doc/latex/group__graphic.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/latex/group__graphic.tex -------------------------------------------------------------------------------- /doc/latex/group__image.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/latex/group__image.tex -------------------------------------------------------------------------------- /doc/latex/group__imgfunctions.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/latex/group__imgfunctions.tex -------------------------------------------------------------------------------- /doc/latex/group__imgtypes.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/latex/group__imgtypes.tex -------------------------------------------------------------------------------- /doc/latex/group__interface.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/latex/group__interface.tex -------------------------------------------------------------------------------- /doc/latex/group__mask.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/latex/group__mask.tex -------------------------------------------------------------------------------- /doc/latex/group__matrix.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/latex/group__matrix.tex -------------------------------------------------------------------------------- /doc/latex/group__objects.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/latex/group__objects.tex -------------------------------------------------------------------------------- /doc/latex/group__paint.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/latex/group__paint.tex -------------------------------------------------------------------------------- /doc/latex/group__path.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/latex/group__path.tex -------------------------------------------------------------------------------- /doc/latex/group__pattern.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/latex/group__pattern.tex -------------------------------------------------------------------------------- /doc/latex/group__shadow.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/latex/group__shadow.tex -------------------------------------------------------------------------------- /doc/latex/group__state.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/latex/group__state.tex -------------------------------------------------------------------------------- /doc/latex/group__stroke.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/latex/group__stroke.tex -------------------------------------------------------------------------------- /doc/latex/group__svgfunctions.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/latex/group__svgfunctions.tex -------------------------------------------------------------------------------- /doc/latex/group__svgtypes.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/latex/group__svgtypes.tex -------------------------------------------------------------------------------- /doc/latex/group__text.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/latex/group__text.tex -------------------------------------------------------------------------------- /doc/latex/group__transform.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/latex/group__transform.tex -------------------------------------------------------------------------------- /doc/latex/group__types.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/latex/group__types.tex -------------------------------------------------------------------------------- /doc/latex/longtable_doxygen.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/latex/longtable_doxygen.sty -------------------------------------------------------------------------------- /doc/latex/modules.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/latex/modules.tex -------------------------------------------------------------------------------- /doc/latex/picasso_8h.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/latex/picasso_8h.tex -------------------------------------------------------------------------------- /doc/latex/picasso__ext_8h.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/latex/picasso__ext_8h.tex -------------------------------------------------------------------------------- /doc/latex/psx__image_8h.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/latex/psx__image_8h.tex -------------------------------------------------------------------------------- /doc/latex/psx__image__plugin_8h.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/latex/psx__image__plugin_8h.tex -------------------------------------------------------------------------------- /doc/latex/psx__svg_8h.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/latex/psx__svg_8h.tex -------------------------------------------------------------------------------- /doc/latex/refman.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/latex/refman.tex -------------------------------------------------------------------------------- /doc/latex/struct__ps__color.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/latex/struct__ps__color.tex -------------------------------------------------------------------------------- /doc/latex/struct__ps__font__info.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/latex/struct__ps__font__info.tex -------------------------------------------------------------------------------- /doc/latex/struct__ps__glyph.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/latex/struct__ps__glyph.tex -------------------------------------------------------------------------------- /doc/latex/struct__ps__point.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/latex/struct__ps__point.tex -------------------------------------------------------------------------------- /doc/latex/struct__ps__rect.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/latex/struct__ps__rect.tex -------------------------------------------------------------------------------- /doc/latex/struct__ps__size.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/latex/struct__ps__size.tex -------------------------------------------------------------------------------- /doc/latex/struct__psx__image.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/latex/struct__psx__image.tex -------------------------------------------------------------------------------- /doc/latex/struct__psx__image__frame.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/latex/struct__psx__image__frame.tex -------------------------------------------------------------------------------- /doc/latex/struct__psx__image__header.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/latex/struct__psx__image__header.tex -------------------------------------------------------------------------------- /doc/latex/struct__psx__image__operator.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/latex/struct__psx__image__operator.tex -------------------------------------------------------------------------------- /doc/latex/tabu_doxygen.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/latex/tabu_doxygen.sty -------------------------------------------------------------------------------- /doc/man/man3/_ps_color.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/man/man3/_ps_color.3 -------------------------------------------------------------------------------- /doc/man/man3/_ps_font_info.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/man/man3/_ps_font_info.3 -------------------------------------------------------------------------------- /doc/man/man3/_ps_glyph.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/man/man3/_ps_glyph.3 -------------------------------------------------------------------------------- /doc/man/man3/_ps_point.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/man/man3/_ps_point.3 -------------------------------------------------------------------------------- /doc/man/man3/_ps_rect.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/man/man3/_ps_rect.3 -------------------------------------------------------------------------------- /doc/man/man3/_ps_size.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/man/man3/_ps_size.3 -------------------------------------------------------------------------------- /doc/man/man3/_psx_image.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/man/man3/_psx_image.3 -------------------------------------------------------------------------------- /doc/man/man3/_psx_image_frame.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/man/man3/_psx_image_frame.3 -------------------------------------------------------------------------------- /doc/man/man3/_psx_image_header.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/man/man3/_psx_image_header.3 -------------------------------------------------------------------------------- /doc/man/man3/_psx_image_operator.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/man/man3/_psx_image_operator.3 -------------------------------------------------------------------------------- /doc/man/man3/attr.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/man/man3/attr.3 -------------------------------------------------------------------------------- /doc/man/man3/canvas.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/man/man3/canvas.3 -------------------------------------------------------------------------------- /doc/man/man3/clip.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/man/man3/clip.3 -------------------------------------------------------------------------------- /doc/man/man3/coder.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/man/man3/coder.3 -------------------------------------------------------------------------------- /doc/man/man3/common.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/man/man3/common.3 -------------------------------------------------------------------------------- /doc/man/man3/context.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/man/man3/context.3 -------------------------------------------------------------------------------- /doc/man/man3/data.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/man/man3/data.3 -------------------------------------------------------------------------------- /doc/man/man3/drawing.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/man/man3/drawing.3 -------------------------------------------------------------------------------- /doc/man/man3/extension.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/man/man3/extension.3 -------------------------------------------------------------------------------- /doc/man/man3/extimg.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/man/man3/extimg.3 -------------------------------------------------------------------------------- /doc/man/man3/extsvg.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/man/man3/extsvg.3 -------------------------------------------------------------------------------- /doc/man/man3/fill.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/man/man3/fill.3 -------------------------------------------------------------------------------- /doc/man/man3/font.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/man/man3/font.3 -------------------------------------------------------------------------------- /doc/man/man3/functions.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/man/man3/functions.3 -------------------------------------------------------------------------------- /doc/man/man3/geometry.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/man/man3/geometry.3 -------------------------------------------------------------------------------- /doc/man/man3/gradient.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/man/man3/gradient.3 -------------------------------------------------------------------------------- /doc/man/man3/graphic.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/man/man3/graphic.3 -------------------------------------------------------------------------------- /doc/man/man3/image.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/man/man3/image.3 -------------------------------------------------------------------------------- /doc/man/man3/imgfunctions.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/man/man3/imgfunctions.3 -------------------------------------------------------------------------------- /doc/man/man3/imgtypes.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/man/man3/imgtypes.3 -------------------------------------------------------------------------------- /doc/man/man3/interface.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/man/man3/interface.3 -------------------------------------------------------------------------------- /doc/man/man3/mask.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/man/man3/mask.3 -------------------------------------------------------------------------------- /doc/man/man3/matrix.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/man/man3/matrix.3 -------------------------------------------------------------------------------- /doc/man/man3/objects.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/man/man3/objects.3 -------------------------------------------------------------------------------- /doc/man/man3/paint.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/man/man3/paint.3 -------------------------------------------------------------------------------- /doc/man/man3/path.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/man/man3/path.3 -------------------------------------------------------------------------------- /doc/man/man3/pattern.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/man/man3/pattern.3 -------------------------------------------------------------------------------- /doc/man/man3/picasso.h.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/man/man3/picasso.h.3 -------------------------------------------------------------------------------- /doc/man/man3/picasso_ext.h.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/man/man3/picasso_ext.h.3 -------------------------------------------------------------------------------- /doc/man/man3/psx_image.h.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/man/man3/psx_image.h.3 -------------------------------------------------------------------------------- /doc/man/man3/psx_image_plugin.h.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/man/man3/psx_image_plugin.h.3 -------------------------------------------------------------------------------- /doc/man/man3/psx_svg.h.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/man/man3/psx_svg.h.3 -------------------------------------------------------------------------------- /doc/man/man3/shadow.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/man/man3/shadow.3 -------------------------------------------------------------------------------- /doc/man/man3/state.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/man/man3/state.3 -------------------------------------------------------------------------------- /doc/man/man3/stroke.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/man/man3/stroke.3 -------------------------------------------------------------------------------- /doc/man/man3/svgfunctions.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/man/man3/svgfunctions.3 -------------------------------------------------------------------------------- /doc/man/man3/svgtypes.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/man/man3/svgtypes.3 -------------------------------------------------------------------------------- /doc/man/man3/text.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/man/man3/text.3 -------------------------------------------------------------------------------- /doc/man/man3/transform.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/man/man3/transform.3 -------------------------------------------------------------------------------- /doc/man/man3/types.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/doc/man/man3/types.3 -------------------------------------------------------------------------------- /ext/common/common.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/ext/common/common.cmake -------------------------------------------------------------------------------- /ext/common/psx_array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/ext/common/psx_array.h -------------------------------------------------------------------------------- /ext/common/psx_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/ext/common/psx_common.c -------------------------------------------------------------------------------- /ext/common/psx_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/ext/common/psx_common.h -------------------------------------------------------------------------------- /ext/common/psx_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/ext/common/psx_file.c -------------------------------------------------------------------------------- /ext/common/psx_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/ext/common/psx_file.h -------------------------------------------------------------------------------- /ext/common/psx_linear_allocator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/ext/common/psx_linear_allocator.c -------------------------------------------------------------------------------- /ext/common/psx_linear_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/ext/common/psx_linear_allocator.h -------------------------------------------------------------------------------- /ext/common/psx_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/ext/common/psx_list.h -------------------------------------------------------------------------------- /ext/common/psx_tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/ext/common/psx_tree.h -------------------------------------------------------------------------------- /ext/ext.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/ext/ext.cmake -------------------------------------------------------------------------------- /ext/image_coders/apple/apple.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/ext/image_coders/apple/apple.cmake -------------------------------------------------------------------------------- /ext/image_coders/apple/images_module.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/ext/image_coders/apple/images_module.m -------------------------------------------------------------------------------- /ext/image_coders/gif/gif.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/ext/image_coders/gif/gif.cmake -------------------------------------------------------------------------------- /ext/image_coders/gif/gif_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/ext/image_coders/gif/gif_module.c -------------------------------------------------------------------------------- /ext/image_coders/image.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/ext/image_coders/image.cmake -------------------------------------------------------------------------------- /ext/image_coders/jpeg/jpeg.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/ext/image_coders/jpeg/jpeg.cmake -------------------------------------------------------------------------------- /ext/image_coders/jpeg/jpeg_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/ext/image_coders/jpeg/jpeg_module.c -------------------------------------------------------------------------------- /ext/image_coders/png/png.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/ext/image_coders/png/png.cmake -------------------------------------------------------------------------------- /ext/image_coders/png/png_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/ext/image_coders/png/png_module.c -------------------------------------------------------------------------------- /ext/image_coders/psx_color_convert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/ext/image_coders/psx_color_convert.h -------------------------------------------------------------------------------- /ext/image_coders/psx_image.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/ext/image_coders/psx_image.def -------------------------------------------------------------------------------- /ext/image_coders/psx_image.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/ext/image_coders/psx_image.rc -------------------------------------------------------------------------------- /ext/image_coders/psx_image_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/ext/image_coders/psx_image_io.c -------------------------------------------------------------------------------- /ext/image_coders/psx_image_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/ext/image_coders/psx_image_io.h -------------------------------------------------------------------------------- /ext/image_coders/psx_image_loader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/ext/image_coders/psx_image_loader.c -------------------------------------------------------------------------------- /ext/image_coders/psx_image_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/ext/image_coders/psx_image_loader.h -------------------------------------------------------------------------------- /ext/image_coders/psx_image_modules.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/ext/image_coders/psx_image_modules.c -------------------------------------------------------------------------------- /ext/image_coders/psx_image_modules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/ext/image_coders/psx_image_modules.h -------------------------------------------------------------------------------- /ext/image_coders/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/ext/image_coders/resource.h -------------------------------------------------------------------------------- /ext/image_coders/webp/webp.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/ext/image_coders/webp/webp.cmake -------------------------------------------------------------------------------- /ext/image_coders/webp/webp_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/ext/image_coders/webp/webp_module.c -------------------------------------------------------------------------------- /ext/svg/psx_svg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/ext/svg/psx_svg.cpp -------------------------------------------------------------------------------- /ext/svg/psx_svg.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/ext/svg/psx_svg.def -------------------------------------------------------------------------------- /ext/svg/psx_svg.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/ext/svg/psx_svg.rc -------------------------------------------------------------------------------- /ext/svg/psx_svg_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/ext/svg/psx_svg_module.c -------------------------------------------------------------------------------- /ext/svg/psx_svg_node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/ext/svg/psx_svg_node.cpp -------------------------------------------------------------------------------- /ext/svg/psx_svg_node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/ext/svg/psx_svg_node.h -------------------------------------------------------------------------------- /ext/svg/psx_svg_parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/ext/svg/psx_svg_parser.cpp -------------------------------------------------------------------------------- /ext/svg/psx_svg_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/ext/svg/psx_svg_parser.h -------------------------------------------------------------------------------- /ext/svg/psx_svg_render.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/ext/svg/psx_svg_render.cpp -------------------------------------------------------------------------------- /ext/svg/psx_svg_render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/ext/svg/psx_svg_render.h -------------------------------------------------------------------------------- /ext/svg/psx_xml_token.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/ext/svg/psx_xml_token.cpp -------------------------------------------------------------------------------- /ext/svg/psx_xml_token.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/ext/svg/psx_xml_token.h -------------------------------------------------------------------------------- /ext/svg/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/ext/svg/resource.h -------------------------------------------------------------------------------- /ext/svg/svg.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/ext/svg/svg.cmake -------------------------------------------------------------------------------- /include/images/psx_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/include/images/psx_image.h -------------------------------------------------------------------------------- /include/images/psx_image_plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/include/images/psx_image_plugin.h -------------------------------------------------------------------------------- /include/include.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/include/include.cmake -------------------------------------------------------------------------------- /include/picasso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/include/picasso.h -------------------------------------------------------------------------------- /include/picasso_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/include/picasso_ext.h -------------------------------------------------------------------------------- /include/svg/psx_svg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/include/svg/psx_svg.h -------------------------------------------------------------------------------- /perf_tests/perf_tests.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/perf_tests/perf_tests.cmake -------------------------------------------------------------------------------- /perf_tests/ps_matrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/perf_tests/ps_matrix.cpp -------------------------------------------------------------------------------- /perf_tests/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/perf_tests/test.cpp -------------------------------------------------------------------------------- /perf_tests/test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/perf_tests/test.h -------------------------------------------------------------------------------- /perf_tests/timeuse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/perf_tests/timeuse.h -------------------------------------------------------------------------------- /src/core/clipper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/src/core/clipper.cpp -------------------------------------------------------------------------------- /src/core/curve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/src/core/curve.cpp -------------------------------------------------------------------------------- /src/core/device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/src/core/device.cpp -------------------------------------------------------------------------------- /src/core/graphic_path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/src/core/graphic_path.cpp -------------------------------------------------------------------------------- /src/core/matrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/src/core/matrix.cpp -------------------------------------------------------------------------------- /src/font/font_adapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/src/font/font_adapter.h -------------------------------------------------------------------------------- /src/font/font_adapter_apple.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/src/font/font_adapter_apple.mm -------------------------------------------------------------------------------- /src/font/font_adapter_dummy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/src/font/font_adapter_dummy.cpp -------------------------------------------------------------------------------- /src/font/font_adapter_freetype2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/src/font/font_adapter_freetype2.cpp -------------------------------------------------------------------------------- /src/font/font_adapter_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/src/font/font_adapter_win32.cpp -------------------------------------------------------------------------------- /src/font/font_load_freetype2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/src/font/font_load_freetype2.cpp -------------------------------------------------------------------------------- /src/gfx/gfx_blender_packed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/src/gfx/gfx_blender_packed.h -------------------------------------------------------------------------------- /src/gfx/gfx_blur.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/src/gfx/gfx_blur.cpp -------------------------------------------------------------------------------- /src/gfx/gfx_blur.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/src/gfx/gfx_blur.h -------------------------------------------------------------------------------- /src/gfx/gfx_composite_packed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/src/gfx/gfx_composite_packed.h -------------------------------------------------------------------------------- /src/gfx/gfx_device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/src/gfx/gfx_device.cpp -------------------------------------------------------------------------------- /src/gfx/gfx_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/src/gfx/gfx_device.h -------------------------------------------------------------------------------- /src/gfx/gfx_gamma_function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/src/gfx/gfx_gamma_function.h -------------------------------------------------------------------------------- /src/gfx/gfx_gradient_adapter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/src/gfx/gfx_gradient_adapter.cpp -------------------------------------------------------------------------------- /src/gfx/gfx_gradient_adapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/src/gfx/gfx_gradient_adapter.h -------------------------------------------------------------------------------- /src/gfx/gfx_image_accessors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/src/gfx/gfx_image_accessors.h -------------------------------------------------------------------------------- /src/gfx/gfx_image_filters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/src/gfx/gfx_image_filters.cpp -------------------------------------------------------------------------------- /src/gfx/gfx_image_filters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/src/gfx/gfx_image_filters.h -------------------------------------------------------------------------------- /src/gfx/gfx_line_generator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/src/gfx/gfx_line_generator.h -------------------------------------------------------------------------------- /src/gfx/gfx_mask_layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/src/gfx/gfx_mask_layer.h -------------------------------------------------------------------------------- /src/gfx/gfx_painter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/src/gfx/gfx_painter.h -------------------------------------------------------------------------------- /src/gfx/gfx_painter_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/src/gfx/gfx_painter_helper.h -------------------------------------------------------------------------------- /src/gfx/gfx_pixfmt_gray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/src/gfx/gfx_pixfmt_gray.h -------------------------------------------------------------------------------- /src/gfx/gfx_pixfmt_rgb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/src/gfx/gfx_pixfmt_rgb.h -------------------------------------------------------------------------------- /src/gfx/gfx_pixfmt_rgb16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/src/gfx/gfx_pixfmt_rgb16.h -------------------------------------------------------------------------------- /src/gfx/gfx_pixfmt_rgba.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/src/gfx/gfx_pixfmt_rgba.h -------------------------------------------------------------------------------- /src/gfx/gfx_pixfmt_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/src/gfx/gfx_pixfmt_wrapper.h -------------------------------------------------------------------------------- /src/gfx/gfx_raster_adapter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/src/gfx/gfx_raster_adapter.cpp -------------------------------------------------------------------------------- /src/gfx/gfx_raster_adapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/src/gfx/gfx_raster_adapter.h -------------------------------------------------------------------------------- /src/gfx/gfx_rasterizer_cell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/src/gfx/gfx_rasterizer_cell.h -------------------------------------------------------------------------------- /src/gfx/gfx_rasterizer_scanline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/src/gfx/gfx_rasterizer_scanline.h -------------------------------------------------------------------------------- /src/gfx/gfx_renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/src/gfx/gfx_renderer.h -------------------------------------------------------------------------------- /src/gfx/gfx_rendering_buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/src/gfx/gfx_rendering_buffer.cpp -------------------------------------------------------------------------------- /src/gfx/gfx_rendering_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/src/gfx/gfx_rendering_buffer.h -------------------------------------------------------------------------------- /src/gfx/gfx_scanline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/src/gfx/gfx_scanline.h -------------------------------------------------------------------------------- /src/gfx/gfx_scanline_renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/src/gfx/gfx_scanline_renderer.h -------------------------------------------------------------------------------- /src/gfx/gfx_scanline_storage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/src/gfx/gfx_scanline_storage.h -------------------------------------------------------------------------------- /src/gfx/gfx_span_generator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/src/gfx/gfx_span_generator.h -------------------------------------------------------------------------------- /src/gfx/gfx_span_image_filters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/src/gfx/gfx_span_image_filters.h -------------------------------------------------------------------------------- /src/include/clipper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/src/include/clipper.h -------------------------------------------------------------------------------- /src/include/color_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/src/include/color_type.h -------------------------------------------------------------------------------- /src/include/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/src/include/common.h -------------------------------------------------------------------------------- /src/include/convert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/src/include/convert.h -------------------------------------------------------------------------------- /src/include/curve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/src/include/curve.h -------------------------------------------------------------------------------- /src/include/data_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/src/include/data_vector.h -------------------------------------------------------------------------------- /src/include/device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/src/include/device.h -------------------------------------------------------------------------------- /src/include/fastcopy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/src/include/fastcopy.h -------------------------------------------------------------------------------- /src/include/fastfill.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/src/include/fastfill.h -------------------------------------------------------------------------------- /src/include/fixedopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/src/include/fixedopt.h -------------------------------------------------------------------------------- /src/include/geometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/src/include/geometry.h -------------------------------------------------------------------------------- /src/include/graphic_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/src/include/graphic_base.h -------------------------------------------------------------------------------- /src/include/graphic_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/src/include/graphic_helper.h -------------------------------------------------------------------------------- /src/include/graphic_path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/src/include/graphic_path.h -------------------------------------------------------------------------------- /src/include/interfaces.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/src/include/interfaces.h -------------------------------------------------------------------------------- /src/include/math_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/src/include/math_type.h -------------------------------------------------------------------------------- /src/include/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/src/include/matrix.h -------------------------------------------------------------------------------- /src/include/memory_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/src/include/memory_manager.h -------------------------------------------------------------------------------- /src/include/non_copy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/src/include/non_copy.h -------------------------------------------------------------------------------- /src/include/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/src/include/platform.h -------------------------------------------------------------------------------- /src/include/vertex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/src/include/vertex.h -------------------------------------------------------------------------------- /src/include/vertex_dist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/src/include/vertex_dist.h -------------------------------------------------------------------------------- /src/picasso.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/src/picasso.def -------------------------------------------------------------------------------- /src/picasso.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/src/picasso.rc -------------------------------------------------------------------------------- /src/picasso_api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/src/picasso_api.cpp -------------------------------------------------------------------------------- /src/picasso_canvas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/src/picasso_canvas.cpp -------------------------------------------------------------------------------- /src/picasso_font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/src/picasso_font.cpp -------------------------------------------------------------------------------- /src/picasso_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/src/picasso_font.h -------------------------------------------------------------------------------- /src/picasso_font_api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/src/picasso_font_api.cpp -------------------------------------------------------------------------------- /src/picasso_font_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/src/picasso_font_cache.h -------------------------------------------------------------------------------- /src/picasso_global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/src/picasso_global.h -------------------------------------------------------------------------------- /src/picasso_gradient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/src/picasso_gradient.cpp -------------------------------------------------------------------------------- /src/picasso_gradient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/src/picasso_gradient.h -------------------------------------------------------------------------------- /src/picasso_gradient_api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/src/picasso_gradient_api.cpp -------------------------------------------------------------------------------- /src/picasso_image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/src/picasso_image.cpp -------------------------------------------------------------------------------- /src/picasso_mask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/src/picasso_mask.cpp -------------------------------------------------------------------------------- /src/picasso_mask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/src/picasso_mask.h -------------------------------------------------------------------------------- /src/picasso_mask_api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/src/picasso_mask_api.cpp -------------------------------------------------------------------------------- /src/picasso_matrix_api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/src/picasso_matrix_api.cpp -------------------------------------------------------------------------------- /src/picasso_objects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/src/picasso_objects.h -------------------------------------------------------------------------------- /src/picasso_painter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/src/picasso_painter.cpp -------------------------------------------------------------------------------- /src/picasso_painter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/src/picasso_painter.h -------------------------------------------------------------------------------- /src/picasso_path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/src/picasso_path.cpp -------------------------------------------------------------------------------- /src/picasso_pattern.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/src/picasso_pattern.cpp -------------------------------------------------------------------------------- /src/picasso_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/src/picasso_private.h -------------------------------------------------------------------------------- /src/picasso_raster_adapter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/src/picasso_raster_adapter.cpp -------------------------------------------------------------------------------- /src/picasso_raster_adapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/src/picasso_raster_adapter.h -------------------------------------------------------------------------------- /src/picasso_rendering_buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/src/picasso_rendering_buffer.cpp -------------------------------------------------------------------------------- /src/picasso_rendering_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/src/picasso_rendering_buffer.h -------------------------------------------------------------------------------- /src/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/src/resource.h -------------------------------------------------------------------------------- /src/simd/fastcopy_sse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/src/simd/fastcopy_sse.h -------------------------------------------------------------------------------- /src/simd/fastfill16_neon.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/src/simd/fastfill16_neon.S -------------------------------------------------------------------------------- /src/simd/fastfill32_neon.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/src/simd/fastfill32_neon.S -------------------------------------------------------------------------------- /src/src.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/src/src.cmake -------------------------------------------------------------------------------- /test/alpha_func.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/test/alpha_func.c -------------------------------------------------------------------------------- /test/android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/test/android/AndroidManifest.xml -------------------------------------------------------------------------------- /test/android/pat565.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/test/android/pat565.h -------------------------------------------------------------------------------- /test/android/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/test/android/project.properties -------------------------------------------------------------------------------- /test/android/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/test/android/res/values/strings.xml -------------------------------------------------------------------------------- /test/android/selt2565.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/test/android/selt2565.h -------------------------------------------------------------------------------- /test/android/testAndroid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/test/android/testAndroid.cpp -------------------------------------------------------------------------------- /test/bitblt_func.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/test/bitblt_func.c -------------------------------------------------------------------------------- /test/blur_func.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/test/blur_func.c -------------------------------------------------------------------------------- /test/clip_func.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/test/clip_func.c -------------------------------------------------------------------------------- /test/composite_func.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/test/composite_func.c -------------------------------------------------------------------------------- /test/drawFunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/test/drawFunc.h -------------------------------------------------------------------------------- /test/drawmask_func.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/test/drawmask_func.c -------------------------------------------------------------------------------- /test/font_config.cfg: -------------------------------------------------------------------------------- 1 | [default] 2 | path=ZCOOLXiaoWei-Regular.ttf 3 | -------------------------------------------------------------------------------- /test/gamma_func.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/test/gamma_func.c -------------------------------------------------------------------------------- /test/gcstate_func.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/test/gcstate_func.c -------------------------------------------------------------------------------- /test/gles2/glut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/test/gles2/glut.h -------------------------------------------------------------------------------- /test/gles2/glut_xwin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/test/gles2/glut_xwin.h -------------------------------------------------------------------------------- /test/gles2/testGLES2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/test/gles2/testGLES2.c -------------------------------------------------------------------------------- /test/gradient_func.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/test/gradient_func.c -------------------------------------------------------------------------------- /test/gtk2/testGtk2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/test/gtk2/testGtk2.c -------------------------------------------------------------------------------- /test/image_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/test/image_info.c -------------------------------------------------------------------------------- /test/image_view.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/test/image_view.c -------------------------------------------------------------------------------- /test/mac/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/test/mac/Info.plist -------------------------------------------------------------------------------- /test/mac/testMac.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/test/mac/testMac.m -------------------------------------------------------------------------------- /test/mask_func.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/test/mask_func.c -------------------------------------------------------------------------------- /test/part_func.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/test/part_func.c -------------------------------------------------------------------------------- /test/pat.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/test/pat.bmp -------------------------------------------------------------------------------- /test/pat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/test/pat.png -------------------------------------------------------------------------------- /test/pat565.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/test/pat565.bmp -------------------------------------------------------------------------------- /test/path_func.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/test/path_func.c -------------------------------------------------------------------------------- /test/pattern_func.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/test/pattern_func.c -------------------------------------------------------------------------------- /test/posix/thr_posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/test/posix/thr_posix.c -------------------------------------------------------------------------------- /test/qt4/testQt4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/test/qt4/testQt4.cpp -------------------------------------------------------------------------------- /test/selt.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/test/selt.bmp -------------------------------------------------------------------------------- /test/selt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/test/selt.png -------------------------------------------------------------------------------- /test/selt2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/test/selt2.bmp -------------------------------------------------------------------------------- /test/selt2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/test/selt2.png -------------------------------------------------------------------------------- /test/selt2565.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/test/selt2565.bmp -------------------------------------------------------------------------------- /test/shadow_func.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/test/shadow_func.c -------------------------------------------------------------------------------- /test/sung.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/test/sung.ttf -------------------------------------------------------------------------------- /test/test.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/test/test.cmake -------------------------------------------------------------------------------- /test/text_func.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/test/text_func.c -------------------------------------------------------------------------------- /test/thread_func.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/test/thread_func.c -------------------------------------------------------------------------------- /test/timeuse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/test/timeuse.h -------------------------------------------------------------------------------- /test/win32/testWin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/test/win32/testWin.c -------------------------------------------------------------------------------- /test/win32/thr_win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/test/win32/thr_win32.c -------------------------------------------------------------------------------- /third_party/expat-2.1.0/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/expat-2.1.0/Android.mk -------------------------------------------------------------------------------- /third_party/expat-2.1.0/CleanSpec.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/expat-2.1.0/CleanSpec.mk -------------------------------------------------------------------------------- /third_party/expat-2.1.0/MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/expat-2.1.0/MANIFEST -------------------------------------------------------------------------------- /third_party/expat-2.1.0/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/expat-2.1.0/NOTICE -------------------------------------------------------------------------------- /third_party/expat-2.1.0/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/expat-2.1.0/README -------------------------------------------------------------------------------- /third_party/expat-2.1.0/expat_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/expat-2.1.0/expat_config.h -------------------------------------------------------------------------------- /third_party/expat-2.1.0/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/expat-2.1.0/jni/Android.mk -------------------------------------------------------------------------------- /third_party/expat-2.1.0/jni/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/expat-2.1.0/jni/Application.mk -------------------------------------------------------------------------------- /third_party/expat-2.1.0/lib/Makefile.MPW: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/expat-2.1.0/lib/Makefile.MPW -------------------------------------------------------------------------------- /third_party/expat-2.1.0/lib/amigaconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/expat-2.1.0/lib/amigaconfig.h -------------------------------------------------------------------------------- /third_party/expat-2.1.0/lib/ascii.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/expat-2.1.0/lib/ascii.h -------------------------------------------------------------------------------- /third_party/expat-2.1.0/lib/asciitab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/expat-2.1.0/lib/asciitab.h -------------------------------------------------------------------------------- /third_party/expat-2.1.0/lib/expat.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/expat-2.1.0/lib/expat.dsp -------------------------------------------------------------------------------- /third_party/expat-2.1.0/lib/expat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/expat-2.1.0/lib/expat.h -------------------------------------------------------------------------------- /third_party/expat-2.1.0/lib/expatw.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/expat-2.1.0/lib/expatw.dsp -------------------------------------------------------------------------------- /third_party/expat-2.1.0/lib/iasciitab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/expat-2.1.0/lib/iasciitab.h -------------------------------------------------------------------------------- /third_party/expat-2.1.0/lib/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/expat-2.1.0/lib/internal.h -------------------------------------------------------------------------------- /third_party/expat-2.1.0/lib/latin1tab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/expat-2.1.0/lib/latin1tab.h -------------------------------------------------------------------------------- /third_party/expat-2.1.0/lib/libexpat.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/expat-2.1.0/lib/libexpat.def -------------------------------------------------------------------------------- /third_party/expat-2.1.0/lib/libexpatw.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/expat-2.1.0/lib/libexpatw.def -------------------------------------------------------------------------------- /third_party/expat-2.1.0/lib/macconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/expat-2.1.0/lib/macconfig.h -------------------------------------------------------------------------------- /third_party/expat-2.1.0/lib/nametab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/expat-2.1.0/lib/nametab.h -------------------------------------------------------------------------------- /third_party/expat-2.1.0/lib/utf8tab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/expat-2.1.0/lib/utf8tab.h -------------------------------------------------------------------------------- /third_party/expat-2.1.0/lib/winconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/expat-2.1.0/lib/winconfig.h -------------------------------------------------------------------------------- /third_party/expat-2.1.0/lib/xmlparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/expat-2.1.0/lib/xmlparse.c -------------------------------------------------------------------------------- /third_party/expat-2.1.0/lib/xmlrole.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/expat-2.1.0/lib/xmlrole.c -------------------------------------------------------------------------------- /third_party/expat-2.1.0/lib/xmlrole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/expat-2.1.0/lib/xmlrole.h -------------------------------------------------------------------------------- /third_party/expat-2.1.0/lib/xmltok.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/expat-2.1.0/lib/xmltok.c -------------------------------------------------------------------------------- /third_party/expat-2.1.0/lib/xmltok.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/expat-2.1.0/lib/xmltok.h -------------------------------------------------------------------------------- /third_party/expat-2.1.0/lib/xmltok_impl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/expat-2.1.0/lib/xmltok_impl.c -------------------------------------------------------------------------------- /third_party/expat-2.1.0/lib/xmltok_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/expat-2.1.0/lib/xmltok_impl.h -------------------------------------------------------------------------------- /third_party/expat-2.1.0/lib/xmltok_ns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/expat-2.1.0/lib/xmltok_ns.c -------------------------------------------------------------------------------- /third_party/expat.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/expat.cmake -------------------------------------------------------------------------------- /third_party/freetype-2.3.6/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/freetype-2.3.6/Android.mk -------------------------------------------------------------------------------- /third_party/freetype-2.3.6/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/freetype-2.3.6/NOTICE -------------------------------------------------------------------------------- /third_party/freetype-2.3.6/builds/ft2unix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/freetype-2.3.6/builds/ft2unix.h -------------------------------------------------------------------------------- /third_party/freetype-2.3.6/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/freetype-2.3.6/jni/Android.mk -------------------------------------------------------------------------------- /third_party/freetype-2.3.6/src/base/ftapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/freetype-2.3.6/src/base/ftapi.c -------------------------------------------------------------------------------- /third_party/freetype-2.3.6/src/base/ftmm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/freetype-2.3.6/src/base/ftmm.c -------------------------------------------------------------------------------- /third_party/freetype-2.3.6/src/cff/cff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/freetype-2.3.6/src/cff/cff.c -------------------------------------------------------------------------------- /third_party/freetype-2.3.6/src/sfnt/sfnt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/freetype-2.3.6/src/sfnt/sfnt.c -------------------------------------------------------------------------------- /third_party/freetype-2.3.6/src/sfnt/ttbdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/freetype-2.3.6/src/sfnt/ttbdf.c -------------------------------------------------------------------------------- /third_party/freetype-2.3.6/src/sfnt/ttbdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/freetype-2.3.6/src/sfnt/ttbdf.h -------------------------------------------------------------------------------- /third_party/freetype-2.3.6/src/sfnt/ttmtx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/freetype-2.3.6/src/sfnt/ttmtx.c -------------------------------------------------------------------------------- /third_party/freetype-2.3.6/src/sfnt/ttmtx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/freetype-2.3.6/src/sfnt/ttmtx.h -------------------------------------------------------------------------------- /third_party/freetype.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/freetype.cmake -------------------------------------------------------------------------------- /third_party/giflib-5.1.3/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/giflib-5.1.3/AUTHORS -------------------------------------------------------------------------------- /third_party/giflib-5.1.3/BUGS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/giflib-5.1.3/BUGS -------------------------------------------------------------------------------- /third_party/giflib-5.1.3/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/giflib-5.1.3/COPYING -------------------------------------------------------------------------------- /third_party/giflib-5.1.3/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/giflib-5.1.3/ChangeLog -------------------------------------------------------------------------------- /third_party/giflib-5.1.3/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/giflib-5.1.3/INSTALL -------------------------------------------------------------------------------- /third_party/giflib-5.1.3/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/giflib-5.1.3/Makefile.am -------------------------------------------------------------------------------- /third_party/giflib-5.1.3/Makefile.unx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/giflib-5.1.3/Makefile.unx -------------------------------------------------------------------------------- /third_party/giflib-5.1.3/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/giflib-5.1.3/NEWS -------------------------------------------------------------------------------- /third_party/giflib-5.1.3/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/giflib-5.1.3/README -------------------------------------------------------------------------------- /third_party/giflib-5.1.3/TODO: -------------------------------------------------------------------------------- 1 | = GIFLIB TODO list = 2 | 3 | Currently empty. 4 | -------------------------------------------------------------------------------- /third_party/giflib-5.1.3/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/giflib-5.1.3/aclocal.m4 -------------------------------------------------------------------------------- /third_party/giflib-5.1.3/ar-lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/giflib-5.1.3/ar-lib -------------------------------------------------------------------------------- /third_party/giflib-5.1.3/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/giflib-5.1.3/autogen.sh -------------------------------------------------------------------------------- /third_party/giflib-5.1.3/build.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/giflib-5.1.3/build.asc -------------------------------------------------------------------------------- /third_party/giflib-5.1.3/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/giflib-5.1.3/compile -------------------------------------------------------------------------------- /third_party/giflib-5.1.3/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/giflib-5.1.3/config.guess -------------------------------------------------------------------------------- /third_party/giflib-5.1.3/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/giflib-5.1.3/config.h.in -------------------------------------------------------------------------------- /third_party/giflib-5.1.3/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/giflib-5.1.3/config.sub -------------------------------------------------------------------------------- /third_party/giflib-5.1.3/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/giflib-5.1.3/configure -------------------------------------------------------------------------------- /third_party/giflib-5.1.3/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/giflib-5.1.3/configure.ac -------------------------------------------------------------------------------- /third_party/giflib-5.1.3/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/giflib-5.1.3/control -------------------------------------------------------------------------------- /third_party/giflib-5.1.3/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/giflib-5.1.3/depcomp -------------------------------------------------------------------------------- /third_party/giflib-5.1.3/doc/00README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/giflib-5.1.3/doc/00README -------------------------------------------------------------------------------- /third_party/giflib-5.1.3/doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/giflib-5.1.3/doc/Makefile.am -------------------------------------------------------------------------------- /third_party/giflib-5.1.3/doc/gif2rgb.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/giflib-5.1.3/doc/gif2rgb.1 -------------------------------------------------------------------------------- /third_party/giflib-5.1.3/doc/gif2rgb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/giflib-5.1.3/doc/gif2rgb.xml -------------------------------------------------------------------------------- /third_party/giflib-5.1.3/doc/gif87.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/giflib-5.1.3/doc/gif87.txt -------------------------------------------------------------------------------- /third_party/giflib-5.1.3/doc/gif89.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/giflib-5.1.3/doc/gif89.txt -------------------------------------------------------------------------------- /third_party/giflib-5.1.3/doc/gif_lib.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/giflib-5.1.3/doc/gif_lib.xml -------------------------------------------------------------------------------- /third_party/giflib-5.1.3/doc/gifbg.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/giflib-5.1.3/doc/gifbg.1 -------------------------------------------------------------------------------- /third_party/giflib-5.1.3/doc/gifbg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/giflib-5.1.3/doc/gifbg.xml -------------------------------------------------------------------------------- /third_party/giflib-5.1.3/doc/gifbuild.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/giflib-5.1.3/doc/gifbuild.1 -------------------------------------------------------------------------------- /third_party/giflib-5.1.3/doc/gifbuild.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/giflib-5.1.3/doc/gifbuild.xml -------------------------------------------------------------------------------- /third_party/giflib-5.1.3/doc/gifclrmp.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/giflib-5.1.3/doc/gifclrmp.1 -------------------------------------------------------------------------------- /third_party/giflib-5.1.3/doc/gifclrmp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/giflib-5.1.3/doc/gifclrmp.xml -------------------------------------------------------------------------------- /third_party/giflib-5.1.3/doc/gifcolor.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/giflib-5.1.3/doc/gifcolor.1 -------------------------------------------------------------------------------- /third_party/giflib-5.1.3/doc/gifcolor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/giflib-5.1.3/doc/gifcolor.xml -------------------------------------------------------------------------------- /third_party/giflib-5.1.3/doc/gifecho.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/giflib-5.1.3/doc/gifecho.1 -------------------------------------------------------------------------------- /third_party/giflib-5.1.3/doc/gifecho.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/giflib-5.1.3/doc/gifecho.xml -------------------------------------------------------------------------------- /third_party/giflib-5.1.3/doc/giffix.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/giflib-5.1.3/doc/giffix.1 -------------------------------------------------------------------------------- /third_party/giflib-5.1.3/doc/giffix.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/giflib-5.1.3/doc/giffix.xml -------------------------------------------------------------------------------- /third_party/giflib-5.1.3/doc/gifhisto.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/giflib-5.1.3/doc/gifhisto.1 -------------------------------------------------------------------------------- /third_party/giflib-5.1.3/doc/gifhisto.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/giflib-5.1.3/doc/gifhisto.xml -------------------------------------------------------------------------------- /third_party/giflib-5.1.3/doc/gifinto.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/giflib-5.1.3/doc/gifinto.1 -------------------------------------------------------------------------------- /third_party/giflib-5.1.3/doc/gifinto.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/giflib-5.1.3/doc/gifinto.xml -------------------------------------------------------------------------------- /third_party/giflib-5.1.3/doc/giflib.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/giflib-5.1.3/doc/giflib.1 -------------------------------------------------------------------------------- /third_party/giflib-5.1.3/doc/giflib.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/giflib-5.1.3/doc/giflib.xml -------------------------------------------------------------------------------- /third_party/giflib-5.1.3/doc/giftext.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/giflib-5.1.3/doc/giftext.1 -------------------------------------------------------------------------------- /third_party/giflib-5.1.3/doc/giftext.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/giflib-5.1.3/doc/giftext.xml -------------------------------------------------------------------------------- /third_party/giflib-5.1.3/doc/giftool.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/giflib-5.1.3/doc/giftool.1 -------------------------------------------------------------------------------- /third_party/giflib-5.1.3/doc/giftool.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/giflib-5.1.3/doc/giftool.xml -------------------------------------------------------------------------------- /third_party/giflib-5.1.3/doc/gifwedge.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/giflib-5.1.3/doc/gifwedge.1 -------------------------------------------------------------------------------- /third_party/giflib-5.1.3/doc/gifwedge.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/giflib-5.1.3/doc/gifwedge.xml -------------------------------------------------------------------------------- /third_party/giflib-5.1.3/doc/intro.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/giflib-5.1.3/doc/intro.xml -------------------------------------------------------------------------------- /third_party/giflib-5.1.3/doc/lzgif.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/giflib-5.1.3/doc/lzgif.txt -------------------------------------------------------------------------------- /third_party/giflib-5.1.3/gif_lib.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/giflib-5.1.3/gif_lib.def -------------------------------------------------------------------------------- /third_party/giflib-5.1.3/history.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/giflib-5.1.3/history.asc -------------------------------------------------------------------------------- /third_party/giflib-5.1.3/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/giflib-5.1.3/install-sh -------------------------------------------------------------------------------- /third_party/giflib-5.1.3/lib/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/giflib-5.1.3/lib/Makefile.am -------------------------------------------------------------------------------- /third_party/giflib-5.1.3/lib/Makefile.unx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/giflib-5.1.3/lib/Makefile.unx -------------------------------------------------------------------------------- /third_party/giflib-5.1.3/lib/dgif_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/giflib-5.1.3/lib/dgif_lib.c -------------------------------------------------------------------------------- /third_party/giflib-5.1.3/lib/egif_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/giflib-5.1.3/lib/egif_lib.c -------------------------------------------------------------------------------- /third_party/giflib-5.1.3/lib/gif_err.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/giflib-5.1.3/lib/gif_err.c -------------------------------------------------------------------------------- /third_party/giflib-5.1.3/lib/gif_font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/giflib-5.1.3/lib/gif_font.c -------------------------------------------------------------------------------- /third_party/giflib-5.1.3/lib/gif_hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/giflib-5.1.3/lib/gif_hash.c -------------------------------------------------------------------------------- /third_party/giflib-5.1.3/lib/gif_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/giflib-5.1.3/lib/gif_hash.h -------------------------------------------------------------------------------- /third_party/giflib-5.1.3/lib/gif_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/giflib-5.1.3/lib/gif_lib.h -------------------------------------------------------------------------------- /third_party/giflib-5.1.3/lib/gifalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/giflib-5.1.3/lib/gifalloc.c -------------------------------------------------------------------------------- /third_party/giflib-5.1.3/lib/quantize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/giflib-5.1.3/lib/quantize.c -------------------------------------------------------------------------------- /third_party/giflib-5.1.3/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/giflib-5.1.3/ltmain.sh -------------------------------------------------------------------------------- /third_party/giflib-5.1.3/m4/libtool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/giflib-5.1.3/m4/libtool.m4 -------------------------------------------------------------------------------- /third_party/giflib-5.1.3/m4/ltoptions.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/giflib-5.1.3/m4/ltoptions.m4 -------------------------------------------------------------------------------- /third_party/giflib-5.1.3/m4/ltsugar.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/giflib-5.1.3/m4/ltsugar.m4 -------------------------------------------------------------------------------- /third_party/giflib-5.1.3/m4/ltversion.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/giflib-5.1.3/m4/ltversion.m4 -------------------------------------------------------------------------------- /third_party/giflib-5.1.3/m4/lt~obsolete.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/giflib-5.1.3/m4/lt~obsolete.m4 -------------------------------------------------------------------------------- /third_party/giflib-5.1.3/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/giflib-5.1.3/missing -------------------------------------------------------------------------------- /third_party/giflib-5.1.3/pic/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/giflib-5.1.3/pic/Makefile.am -------------------------------------------------------------------------------- /third_party/giflib-5.1.3/pic/NOTES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/giflib-5.1.3/pic/NOTES -------------------------------------------------------------------------------- /third_party/giflib-5.1.3/pic/sample.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/giflib-5.1.3/pic/sample.ico -------------------------------------------------------------------------------- /third_party/giflib-5.1.3/test-driver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/giflib-5.1.3/test-driver -------------------------------------------------------------------------------- /third_party/giflib-5.1.3/test.sh: -------------------------------------------------------------------------------- 1 | cd tests 2 | make 3 | -------------------------------------------------------------------------------- /third_party/giflib-5.1.3/tests/fire.dmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/giflib-5.1.3/tests/fire.dmp -------------------------------------------------------------------------------- /third_party/giflib-5.1.3/tests/fire.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/giflib-5.1.3/tests/fire.map -------------------------------------------------------------------------------- /third_party/giflib-5.1.3/tests/foobar.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/giflib-5.1.3/tests/foobar.ico -------------------------------------------------------------------------------- /third_party/giflib-5.1.3/tests/giffixed.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/giflib-5.1.3/tests/giffixed.ico -------------------------------------------------------------------------------- /third_party/giflib-5.1.3/tests/gifgrid.dmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/giflib-5.1.3/tests/gifgrid.dmp -------------------------------------------------------------------------------- /third_party/giflib-5.1.3/tests/gifgrid.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/giflib-5.1.3/tests/gifgrid.ico -------------------------------------------------------------------------------- /third_party/giflib-5.1.3/tests/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/giflib-5.1.3/tests/makefile -------------------------------------------------------------------------------- /third_party/giflib-5.1.3/util/getarg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/giflib-5.1.3/util/getarg.c -------------------------------------------------------------------------------- /third_party/giflib-5.1.3/util/getarg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/giflib-5.1.3/util/getarg.h -------------------------------------------------------------------------------- /third_party/giflib-5.1.3/util/gif2rgb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/giflib-5.1.3/util/gif2rgb.c -------------------------------------------------------------------------------- /third_party/giflib-5.1.3/util/gifbg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/giflib-5.1.3/util/gifbg.c -------------------------------------------------------------------------------- /third_party/giflib-5.1.3/util/gifbuild.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/giflib-5.1.3/util/gifbuild.c -------------------------------------------------------------------------------- /third_party/giflib-5.1.3/util/gifclrmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/giflib-5.1.3/util/gifclrmp.c -------------------------------------------------------------------------------- /third_party/giflib-5.1.3/util/gifcolor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/giflib-5.1.3/util/gifcolor.c -------------------------------------------------------------------------------- /third_party/giflib-5.1.3/util/gifecho.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/giflib-5.1.3/util/gifecho.c -------------------------------------------------------------------------------- /third_party/giflib-5.1.3/util/giffix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/giflib-5.1.3/util/giffix.c -------------------------------------------------------------------------------- /third_party/giflib-5.1.3/util/gifhisto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/giflib-5.1.3/util/gifhisto.c -------------------------------------------------------------------------------- /third_party/giflib-5.1.3/util/gifinto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/giflib-5.1.3/util/gifinto.c -------------------------------------------------------------------------------- /third_party/giflib-5.1.3/util/giftext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/giflib-5.1.3/util/giftext.c -------------------------------------------------------------------------------- /third_party/giflib-5.1.3/util/giftool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/giflib-5.1.3/util/giftool.c -------------------------------------------------------------------------------- /third_party/giflib-5.1.3/util/gifwedge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/giflib-5.1.3/util/gifwedge.c -------------------------------------------------------------------------------- /third_party/giflib-5.1.3/util/qprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/giflib-5.1.3/util/qprintf.c -------------------------------------------------------------------------------- /third_party/giflib.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/giflib.cmake -------------------------------------------------------------------------------- /third_party/libjpeg-turbo-1.4.1/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libjpeg-turbo-1.4.1/README -------------------------------------------------------------------------------- /third_party/libjpeg-turbo-1.4.1/bmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libjpeg-turbo-1.4.1/bmp.c -------------------------------------------------------------------------------- /third_party/libjpeg-turbo-1.4.1/bmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libjpeg-turbo-1.4.1/bmp.h -------------------------------------------------------------------------------- /third_party/libjpeg-turbo-1.4.1/cdjpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libjpeg-turbo-1.4.1/cdjpeg.c -------------------------------------------------------------------------------- /third_party/libjpeg-turbo-1.4.1/cdjpeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libjpeg-turbo-1.4.1/cdjpeg.h -------------------------------------------------------------------------------- /third_party/libjpeg-turbo-1.4.1/cjpeg.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libjpeg-turbo-1.4.1/cjpeg.1 -------------------------------------------------------------------------------- /third_party/libjpeg-turbo-1.4.1/cjpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libjpeg-turbo-1.4.1/cjpeg.c -------------------------------------------------------------------------------- /third_party/libjpeg-turbo-1.4.1/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libjpeg-turbo-1.4.1/compile -------------------------------------------------------------------------------- /third_party/libjpeg-turbo-1.4.1/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libjpeg-turbo-1.4.1/depcomp -------------------------------------------------------------------------------- /third_party/libjpeg-turbo-1.4.1/djpeg.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libjpeg-turbo-1.4.1/djpeg.1 -------------------------------------------------------------------------------- /third_party/libjpeg-turbo-1.4.1/djpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libjpeg-turbo-1.4.1/djpeg.c -------------------------------------------------------------------------------- /third_party/libjpeg-turbo-1.4.1/doc/html/doxygen-extra.css: -------------------------------------------------------------------------------- 1 | code { 2 | color: #4665A2; 3 | } 4 | -------------------------------------------------------------------------------- /third_party/libjpeg-turbo-1.4.1/doxygen-extra.css: -------------------------------------------------------------------------------- 1 | code { 2 | color: #4665A2; 3 | } 4 | -------------------------------------------------------------------------------- /third_party/libjpeg-turbo-1.4.1/java/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Main-Class: TJExample 3 | -------------------------------------------------------------------------------- /third_party/libjpeg-turbo-1.4.1/jchuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libjpeg-turbo-1.4.1/jchuff.c -------------------------------------------------------------------------------- /third_party/libjpeg-turbo-1.4.1/jchuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libjpeg-turbo-1.4.1/jchuff.h -------------------------------------------------------------------------------- /third_party/libjpeg-turbo-1.4.1/jcinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libjpeg-turbo-1.4.1/jcinit.c -------------------------------------------------------------------------------- /third_party/libjpeg-turbo-1.4.1/jdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libjpeg-turbo-1.4.1/jdct.h -------------------------------------------------------------------------------- /third_party/libjpeg-turbo-1.4.1/jdhuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libjpeg-turbo-1.4.1/jdhuff.c -------------------------------------------------------------------------------- /third_party/libjpeg-turbo-1.4.1/jdhuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libjpeg-turbo-1.4.1/jdhuff.h -------------------------------------------------------------------------------- /third_party/libjpeg-turbo-1.4.1/jerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libjpeg-turbo-1.4.1/jerror.c -------------------------------------------------------------------------------- /third_party/libjpeg-turbo-1.4.1/jerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libjpeg-turbo-1.4.1/jerror.h -------------------------------------------------------------------------------- /third_party/libjpeg-turbo-1.4.1/jsimd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libjpeg-turbo-1.4.1/jsimd.h -------------------------------------------------------------------------------- /third_party/libjpeg-turbo-1.4.1/jutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libjpeg-turbo-1.4.1/jutils.c -------------------------------------------------------------------------------- /third_party/libjpeg-turbo-1.4.1/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libjpeg-turbo-1.4.1/missing -------------------------------------------------------------------------------- /third_party/libjpeg-turbo-1.4.1/rdbmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libjpeg-turbo-1.4.1/rdbmp.c -------------------------------------------------------------------------------- /third_party/libjpeg-turbo-1.4.1/rdgif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libjpeg-turbo-1.4.1/rdgif.c -------------------------------------------------------------------------------- /third_party/libjpeg-turbo-1.4.1/rdppm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libjpeg-turbo-1.4.1/rdppm.c -------------------------------------------------------------------------------- /third_party/libjpeg-turbo-1.4.1/rdrle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libjpeg-turbo-1.4.1/rdrle.c -------------------------------------------------------------------------------- /third_party/libjpeg-turbo-1.4.1/tjutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libjpeg-turbo-1.4.1/tjutil.c -------------------------------------------------------------------------------- /third_party/libjpeg-turbo-1.4.1/tjutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libjpeg-turbo-1.4.1/tjutil.h -------------------------------------------------------------------------------- /third_party/libjpeg-turbo-1.4.1/wrbmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libjpeg-turbo-1.4.1/wrbmp.c -------------------------------------------------------------------------------- /third_party/libjpeg-turbo-1.4.1/wrgif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libjpeg-turbo-1.4.1/wrgif.c -------------------------------------------------------------------------------- /third_party/libjpeg-turbo-1.4.1/wrppm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libjpeg-turbo-1.4.1/wrppm.c -------------------------------------------------------------------------------- /third_party/libjpeg-turbo-1.4.1/wrrle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libjpeg-turbo-1.4.1/wrrle.c -------------------------------------------------------------------------------- /third_party/libjpeg.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libjpeg.cmake -------------------------------------------------------------------------------- /third_party/libpng-1.6.17/ANNOUNCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libpng-1.6.17/ANNOUNCE -------------------------------------------------------------------------------- /third_party/libpng-1.6.17/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libpng-1.6.17/CHANGES -------------------------------------------------------------------------------- /third_party/libpng-1.6.17/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libpng-1.6.17/CMakeLists.txt -------------------------------------------------------------------------------- /third_party/libpng-1.6.17/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libpng-1.6.17/INSTALL -------------------------------------------------------------------------------- /third_party/libpng-1.6.17/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libpng-1.6.17/LICENSE -------------------------------------------------------------------------------- /third_party/libpng-1.6.17/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libpng-1.6.17/Makefile.am -------------------------------------------------------------------------------- /third_party/libpng-1.6.17/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libpng-1.6.17/README -------------------------------------------------------------------------------- /third_party/libpng-1.6.17/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libpng-1.6.17/TODO -------------------------------------------------------------------------------- /third_party/libpng-1.6.17/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libpng-1.6.17/aclocal.m4 -------------------------------------------------------------------------------- /third_party/libpng-1.6.17/arm/arm_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libpng-1.6.17/arm/arm_init.c -------------------------------------------------------------------------------- /third_party/libpng-1.6.17/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libpng-1.6.17/autogen.sh -------------------------------------------------------------------------------- /third_party/libpng-1.6.17/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libpng-1.6.17/compile -------------------------------------------------------------------------------- /third_party/libpng-1.6.17/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libpng-1.6.17/config.guess -------------------------------------------------------------------------------- /third_party/libpng-1.6.17/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libpng-1.6.17/config.h.in -------------------------------------------------------------------------------- /third_party/libpng-1.6.17/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libpng-1.6.17/config.sub -------------------------------------------------------------------------------- /third_party/libpng-1.6.17/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libpng-1.6.17/configure -------------------------------------------------------------------------------- /third_party/libpng-1.6.17/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libpng-1.6.17/configure.ac -------------------------------------------------------------------------------- /third_party/libpng-1.6.17/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libpng-1.6.17/depcomp -------------------------------------------------------------------------------- /third_party/libpng-1.6.17/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libpng-1.6.17/example.c -------------------------------------------------------------------------------- /third_party/libpng-1.6.17/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libpng-1.6.17/install-sh -------------------------------------------------------------------------------- /third_party/libpng-1.6.17/libpng.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libpng-1.6.17/libpng.3 -------------------------------------------------------------------------------- /third_party/libpng-1.6.17/libpng.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libpng-1.6.17/libpng.pc.in -------------------------------------------------------------------------------- /third_party/libpng-1.6.17/libpngpf.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libpng-1.6.17/libpngpf.3 -------------------------------------------------------------------------------- /third_party/libpng-1.6.17/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libpng-1.6.17/ltmain.sh -------------------------------------------------------------------------------- /third_party/libpng-1.6.17/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libpng-1.6.17/missing -------------------------------------------------------------------------------- /third_party/libpng-1.6.17/png.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libpng-1.6.17/png.5 -------------------------------------------------------------------------------- /third_party/libpng-1.6.17/png.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libpng-1.6.17/png.c -------------------------------------------------------------------------------- /third_party/libpng-1.6.17/png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libpng-1.6.17/png.h -------------------------------------------------------------------------------- /third_party/libpng-1.6.17/pngconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libpng-1.6.17/pngconf.h -------------------------------------------------------------------------------- /third_party/libpng-1.6.17/pngdebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libpng-1.6.17/pngdebug.h -------------------------------------------------------------------------------- /third_party/libpng-1.6.17/pngerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libpng-1.6.17/pngerror.c -------------------------------------------------------------------------------- /third_party/libpng-1.6.17/pngget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libpng-1.6.17/pngget.c -------------------------------------------------------------------------------- /third_party/libpng-1.6.17/pnginfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libpng-1.6.17/pnginfo.h -------------------------------------------------------------------------------- /third_party/libpng-1.6.17/pngmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libpng-1.6.17/pngmem.c -------------------------------------------------------------------------------- /third_party/libpng-1.6.17/pngpread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libpng-1.6.17/pngpread.c -------------------------------------------------------------------------------- /third_party/libpng-1.6.17/pngpriv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libpng-1.6.17/pngpriv.h -------------------------------------------------------------------------------- /third_party/libpng-1.6.17/pngread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libpng-1.6.17/pngread.c -------------------------------------------------------------------------------- /third_party/libpng-1.6.17/pngrio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libpng-1.6.17/pngrio.c -------------------------------------------------------------------------------- /third_party/libpng-1.6.17/pngrtran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libpng-1.6.17/pngrtran.c -------------------------------------------------------------------------------- /third_party/libpng-1.6.17/pngrutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libpng-1.6.17/pngrutil.c -------------------------------------------------------------------------------- /third_party/libpng-1.6.17/pngset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libpng-1.6.17/pngset.c -------------------------------------------------------------------------------- /third_party/libpng-1.6.17/pngstruct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libpng-1.6.17/pngstruct.h -------------------------------------------------------------------------------- /third_party/libpng-1.6.17/pngtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libpng-1.6.17/pngtest.c -------------------------------------------------------------------------------- /third_party/libpng-1.6.17/pngtrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libpng-1.6.17/pngtrans.c -------------------------------------------------------------------------------- /third_party/libpng-1.6.17/pngusr.dfa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libpng-1.6.17/pngusr.dfa -------------------------------------------------------------------------------- /third_party/libpng-1.6.17/pngwio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libpng-1.6.17/pngwio.c -------------------------------------------------------------------------------- /third_party/libpng-1.6.17/pngwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libpng-1.6.17/pngwrite.c -------------------------------------------------------------------------------- /third_party/libpng-1.6.17/pngwtran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libpng-1.6.17/pngwtran.c -------------------------------------------------------------------------------- /third_party/libpng-1.6.17/pngwutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libpng-1.6.17/pngwutil.c -------------------------------------------------------------------------------- /third_party/libpng-1.6.17/scripts/def.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libpng-1.6.17/scripts/def.c -------------------------------------------------------------------------------- /third_party/libpng-1.6.17/scripts/sym.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libpng-1.6.17/scripts/sym.c -------------------------------------------------------------------------------- /third_party/libpng-1.6.17/scripts/vers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libpng-1.6.17/scripts/vers.c -------------------------------------------------------------------------------- /third_party/libpng-1.6.17/test-driver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libpng-1.6.17/test-driver -------------------------------------------------------------------------------- /third_party/libpng-1.6.17/tests/pngstest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libpng-1.6.17/tests/pngstest -------------------------------------------------------------------------------- /third_party/libpng-1.6.17/tests/pngtest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libpng-1.6.17/tests/pngtest -------------------------------------------------------------------------------- /third_party/libpng-1.6.17/tests/pngvalid-gamma-16-to-8: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec ./pngvalid --gamma-16-to-8 3 | -------------------------------------------------------------------------------- /third_party/libpng-1.6.17/tests/pngvalid-gamma-alpha-mode: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec ./pngvalid --gamma-alpha-mode 3 | -------------------------------------------------------------------------------- /third_party/libpng-1.6.17/tests/pngvalid-gamma-background: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec ./pngvalid --gamma-background 3 | -------------------------------------------------------------------------------- /third_party/libpng-1.6.17/tests/pngvalid-gamma-expand16-alpha-mode: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec ./pngvalid --gamma-alpha-mode --expand16 3 | -------------------------------------------------------------------------------- /third_party/libpng-1.6.17/tests/pngvalid-gamma-expand16-background: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec ./pngvalid --gamma-background --expand16 3 | -------------------------------------------------------------------------------- /third_party/libpng-1.6.17/tests/pngvalid-gamma-expand16-transform: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec ./pngvalid --gamma-transform --expand16 3 | -------------------------------------------------------------------------------- /third_party/libpng-1.6.17/tests/pngvalid-gamma-sbit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec ./pngvalid --gamma-sbit 3 | -------------------------------------------------------------------------------- /third_party/libpng-1.6.17/tests/pngvalid-gamma-threshold: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec ./pngvalid --gamma-threshold 3 | -------------------------------------------------------------------------------- /third_party/libpng-1.6.17/tests/pngvalid-gamma-transform: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec ./pngvalid --gamma-transform 3 | -------------------------------------------------------------------------------- /third_party/libpng-1.6.17/tests/pngvalid-progressive-interlace-size: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec ./pngvalid --size --progressive-read 3 | -------------------------------------------------------------------------------- /third_party/libpng-1.6.17/tests/pngvalid-progressive-interlace-transform: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec ./pngvalid --transform 3 | -------------------------------------------------------------------------------- /third_party/libpng.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libpng.cmake -------------------------------------------------------------------------------- /third_party/libwebp-0.5.1/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libwebp-0.5.1/AUTHORS -------------------------------------------------------------------------------- /third_party/libwebp-0.5.1/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libwebp-0.5.1/Android.mk -------------------------------------------------------------------------------- /third_party/libwebp-0.5.1/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libwebp-0.5.1/CMakeLists.txt -------------------------------------------------------------------------------- /third_party/libwebp-0.5.1/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libwebp-0.5.1/COPYING -------------------------------------------------------------------------------- /third_party/libwebp-0.5.1/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libwebp-0.5.1/ChangeLog -------------------------------------------------------------------------------- /third_party/libwebp-0.5.1/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libwebp-0.5.1/Makefile.am -------------------------------------------------------------------------------- /third_party/libwebp-0.5.1/Makefile.vc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libwebp-0.5.1/Makefile.vc -------------------------------------------------------------------------------- /third_party/libwebp-0.5.1/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libwebp-0.5.1/NEWS -------------------------------------------------------------------------------- /third_party/libwebp-0.5.1/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libwebp-0.5.1/PATENTS -------------------------------------------------------------------------------- /third_party/libwebp-0.5.1/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libwebp-0.5.1/README -------------------------------------------------------------------------------- /third_party/libwebp-0.5.1/README.mux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libwebp-0.5.1/README.mux -------------------------------------------------------------------------------- /third_party/libwebp-0.5.1/autogen.sh: -------------------------------------------------------------------------------- 1 | #! /bin/sh -e 2 | exec autoreconf -fi 3 | -------------------------------------------------------------------------------- /third_party/libwebp-0.5.1/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libwebp-0.5.1/build.gradle -------------------------------------------------------------------------------- /third_party/libwebp-0.5.1/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libwebp-0.5.1/configure.ac -------------------------------------------------------------------------------- /third_party/libwebp-0.5.1/doc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libwebp-0.5.1/doc/README -------------------------------------------------------------------------------- /third_party/libwebp-0.5.1/doc/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libwebp-0.5.1/doc/TODO -------------------------------------------------------------------------------- /third_party/libwebp-0.5.1/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libwebp-0.5.1/gradlew -------------------------------------------------------------------------------- /third_party/libwebp-0.5.1/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libwebp-0.5.1/gradlew.bat -------------------------------------------------------------------------------- /third_party/libwebp-0.5.1/iosbuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libwebp-0.5.1/iosbuild.sh -------------------------------------------------------------------------------- /third_party/libwebp-0.5.1/makefile.unix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libwebp-0.5.1/makefile.unix -------------------------------------------------------------------------------- /third_party/libwebp-0.5.1/man/cwebp.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libwebp-0.5.1/man/cwebp.1 -------------------------------------------------------------------------------- /third_party/libwebp-0.5.1/man/dwebp.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libwebp-0.5.1/man/dwebp.1 -------------------------------------------------------------------------------- /third_party/libwebp-0.5.1/man/gif2webp.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libwebp-0.5.1/man/gif2webp.1 -------------------------------------------------------------------------------- /third_party/libwebp-0.5.1/man/vwebp.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libwebp-0.5.1/man/vwebp.1 -------------------------------------------------------------------------------- /third_party/libwebp-0.5.1/man/webpmux.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libwebp-0.5.1/man/webpmux.1 -------------------------------------------------------------------------------- /third_party/libwebp-0.5.1/src/dec/idec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libwebp-0.5.1/src/dec/idec.c -------------------------------------------------------------------------------- /third_party/libwebp-0.5.1/src/dec/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libwebp-0.5.1/src/dec/io.c -------------------------------------------------------------------------------- /third_party/libwebp-0.5.1/src/dec/tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libwebp-0.5.1/src/dec/tree.c -------------------------------------------------------------------------------- /third_party/libwebp-0.5.1/src/dec/vp8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libwebp-0.5.1/src/dec/vp8.c -------------------------------------------------------------------------------- /third_party/libwebp-0.5.1/src/dec/vp8i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libwebp-0.5.1/src/dec/vp8i.h -------------------------------------------------------------------------------- /third_party/libwebp-0.5.1/src/dec/vp8l.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libwebp-0.5.1/src/dec/vp8l.c -------------------------------------------------------------------------------- /third_party/libwebp-0.5.1/src/dec/webp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libwebp-0.5.1/src/dec/webp.c -------------------------------------------------------------------------------- /third_party/libwebp-0.5.1/src/dsp/argb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libwebp-0.5.1/src/dsp/argb.c -------------------------------------------------------------------------------- /third_party/libwebp-0.5.1/src/dsp/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libwebp-0.5.1/src/dsp/cpu.c -------------------------------------------------------------------------------- /third_party/libwebp-0.5.1/src/dsp/dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libwebp-0.5.1/src/dsp/dec.c -------------------------------------------------------------------------------- /third_party/libwebp-0.5.1/src/dsp/dsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libwebp-0.5.1/src/dsp/dsp.h -------------------------------------------------------------------------------- /third_party/libwebp-0.5.1/src/dsp/enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libwebp-0.5.1/src/dsp/enc.c -------------------------------------------------------------------------------- /third_party/libwebp-0.5.1/src/dsp/neon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libwebp-0.5.1/src/dsp/neon.h -------------------------------------------------------------------------------- /third_party/libwebp-0.5.1/src/dsp/yuv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libwebp-0.5.1/src/dsp/yuv.c -------------------------------------------------------------------------------- /third_party/libwebp-0.5.1/src/dsp/yuv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libwebp-0.5.1/src/dsp/yuv.h -------------------------------------------------------------------------------- /third_party/libwebp-0.5.1/src/enc/cost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libwebp-0.5.1/src/enc/cost.c -------------------------------------------------------------------------------- /third_party/libwebp-0.5.1/src/enc/cost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libwebp-0.5.1/src/enc/cost.h -------------------------------------------------------------------------------- /third_party/libwebp-0.5.1/src/mux/muxi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libwebp-0.5.1/src/mux/muxi.h -------------------------------------------------------------------------------- /third_party/libwebp-0.5.1/src/webp/mux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libwebp-0.5.1/src/webp/mux.h -------------------------------------------------------------------------------- /third_party/libwebp-0.5.1/swig/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libwebp-0.5.1/swig/README -------------------------------------------------------------------------------- /third_party/libwebp-0.5.1/swig/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libwebp-0.5.1/swig/setup.py -------------------------------------------------------------------------------- /third_party/libwebp.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/libwebp.cmake -------------------------------------------------------------------------------- /third_party/third_party.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/third_party.cmake -------------------------------------------------------------------------------- /third_party/zlib-1.2.8/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/zlib-1.2.8/CMakeLists.txt -------------------------------------------------------------------------------- /third_party/zlib-1.2.8/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/zlib-1.2.8/ChangeLog -------------------------------------------------------------------------------- /third_party/zlib-1.2.8/FAQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/zlib-1.2.8/FAQ -------------------------------------------------------------------------------- /third_party/zlib-1.2.8/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/zlib-1.2.8/INDEX -------------------------------------------------------------------------------- /third_party/zlib-1.2.8/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/zlib-1.2.8/README -------------------------------------------------------------------------------- /third_party/zlib-1.2.8/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/zlib-1.2.8/adler32.c -------------------------------------------------------------------------------- /third_party/zlib-1.2.8/as400/bndsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/zlib-1.2.8/as400/bndsrc -------------------------------------------------------------------------------- /third_party/zlib-1.2.8/as400/compile.clp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/zlib-1.2.8/as400/compile.clp -------------------------------------------------------------------------------- /third_party/zlib-1.2.8/as400/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/zlib-1.2.8/as400/readme.txt -------------------------------------------------------------------------------- /third_party/zlib-1.2.8/as400/zlib.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/zlib-1.2.8/as400/zlib.inc -------------------------------------------------------------------------------- /third_party/zlib-1.2.8/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/zlib-1.2.8/compress.c -------------------------------------------------------------------------------- /third_party/zlib-1.2.8/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/zlib-1.2.8/configure -------------------------------------------------------------------------------- /third_party/zlib-1.2.8/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/zlib-1.2.8/crc32.c -------------------------------------------------------------------------------- /third_party/zlib-1.2.8/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/zlib-1.2.8/crc32.h -------------------------------------------------------------------------------- /third_party/zlib-1.2.8/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/zlib-1.2.8/deflate.c -------------------------------------------------------------------------------- /third_party/zlib-1.2.8/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/zlib-1.2.8/deflate.h -------------------------------------------------------------------------------- /third_party/zlib-1.2.8/doc/algorithm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/zlib-1.2.8/doc/algorithm.txt -------------------------------------------------------------------------------- /third_party/zlib-1.2.8/doc/rfc1950.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/zlib-1.2.8/doc/rfc1950.txt -------------------------------------------------------------------------------- /third_party/zlib-1.2.8/doc/rfc1951.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/zlib-1.2.8/doc/rfc1951.txt -------------------------------------------------------------------------------- /third_party/zlib-1.2.8/doc/rfc1952.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/zlib-1.2.8/doc/rfc1952.txt -------------------------------------------------------------------------------- /third_party/zlib-1.2.8/doc/txtvsbin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/zlib-1.2.8/doc/txtvsbin.txt -------------------------------------------------------------------------------- /third_party/zlib-1.2.8/examples/enough.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/zlib-1.2.8/examples/enough.c -------------------------------------------------------------------------------- /third_party/zlib-1.2.8/examples/fitblk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/zlib-1.2.8/examples/fitblk.c -------------------------------------------------------------------------------- /third_party/zlib-1.2.8/examples/gun.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/zlib-1.2.8/examples/gun.c -------------------------------------------------------------------------------- /third_party/zlib-1.2.8/examples/gzjoin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/zlib-1.2.8/examples/gzjoin.c -------------------------------------------------------------------------------- /third_party/zlib-1.2.8/examples/gzlog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/zlib-1.2.8/examples/gzlog.c -------------------------------------------------------------------------------- /third_party/zlib-1.2.8/examples/gzlog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/zlib-1.2.8/examples/gzlog.h -------------------------------------------------------------------------------- /third_party/zlib-1.2.8/examples/zpipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/zlib-1.2.8/examples/zpipe.c -------------------------------------------------------------------------------- /third_party/zlib-1.2.8/examples/zran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/zlib-1.2.8/examples/zran.c -------------------------------------------------------------------------------- /third_party/zlib-1.2.8/gzclose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/zlib-1.2.8/gzclose.c -------------------------------------------------------------------------------- /third_party/zlib-1.2.8/gzguts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/zlib-1.2.8/gzguts.h -------------------------------------------------------------------------------- /third_party/zlib-1.2.8/gzlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/zlib-1.2.8/gzlib.c -------------------------------------------------------------------------------- /third_party/zlib-1.2.8/gzread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/zlib-1.2.8/gzread.c -------------------------------------------------------------------------------- /third_party/zlib-1.2.8/gzwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/zlib-1.2.8/gzwrite.c -------------------------------------------------------------------------------- /third_party/zlib-1.2.8/infback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/zlib-1.2.8/infback.c -------------------------------------------------------------------------------- /third_party/zlib-1.2.8/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/zlib-1.2.8/inffast.c -------------------------------------------------------------------------------- /third_party/zlib-1.2.8/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/zlib-1.2.8/inffast.h -------------------------------------------------------------------------------- /third_party/zlib-1.2.8/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/zlib-1.2.8/inffixed.h -------------------------------------------------------------------------------- /third_party/zlib-1.2.8/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/zlib-1.2.8/inflate.c -------------------------------------------------------------------------------- /third_party/zlib-1.2.8/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/zlib-1.2.8/inflate.h -------------------------------------------------------------------------------- /third_party/zlib-1.2.8/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/zlib-1.2.8/inftrees.c -------------------------------------------------------------------------------- /third_party/zlib-1.2.8/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/zlib-1.2.8/inftrees.h -------------------------------------------------------------------------------- /third_party/zlib-1.2.8/make_vms.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/zlib-1.2.8/make_vms.com -------------------------------------------------------------------------------- /third_party/zlib-1.2.8/msdos/Makefile.tc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/zlib-1.2.8/msdos/Makefile.tc -------------------------------------------------------------------------------- /third_party/zlib-1.2.8/nintendods/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/zlib-1.2.8/nintendods/README -------------------------------------------------------------------------------- /third_party/zlib-1.2.8/old/Makefile.emx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/zlib-1.2.8/old/Makefile.emx -------------------------------------------------------------------------------- /third_party/zlib-1.2.8/old/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/zlib-1.2.8/old/README -------------------------------------------------------------------------------- /third_party/zlib-1.2.8/old/descrip.mms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/zlib-1.2.8/old/descrip.mms -------------------------------------------------------------------------------- /third_party/zlib-1.2.8/old/os2/zlib.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/zlib-1.2.8/old/os2/zlib.def -------------------------------------------------------------------------------- /third_party/zlib-1.2.8/qnx/package.qpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/zlib-1.2.8/qnx/package.qpg -------------------------------------------------------------------------------- /third_party/zlib-1.2.8/test/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/zlib-1.2.8/test/example.c -------------------------------------------------------------------------------- /third_party/zlib-1.2.8/test/infcover.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/zlib-1.2.8/test/infcover.c -------------------------------------------------------------------------------- /third_party/zlib-1.2.8/test/minigzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/zlib-1.2.8/test/minigzip.c -------------------------------------------------------------------------------- /third_party/zlib-1.2.8/treebuild.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/zlib-1.2.8/treebuild.xml -------------------------------------------------------------------------------- /third_party/zlib-1.2.8/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/zlib-1.2.8/trees.c -------------------------------------------------------------------------------- /third_party/zlib-1.2.8/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/zlib-1.2.8/trees.h -------------------------------------------------------------------------------- /third_party/zlib-1.2.8/uncompr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/zlib-1.2.8/uncompr.c -------------------------------------------------------------------------------- /third_party/zlib-1.2.8/win32/DLL_FAQ.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/zlib-1.2.8/win32/DLL_FAQ.txt -------------------------------------------------------------------------------- /third_party/zlib-1.2.8/win32/VisualC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/zlib-1.2.8/win32/VisualC.txt -------------------------------------------------------------------------------- /third_party/zlib-1.2.8/win32/zlib.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/zlib-1.2.8/win32/zlib.def -------------------------------------------------------------------------------- /third_party/zlib-1.2.8/win32/zlib1.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/zlib-1.2.8/win32/zlib1.rc -------------------------------------------------------------------------------- /third_party/zlib-1.2.8/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/zlib-1.2.8/zconf.h -------------------------------------------------------------------------------- /third_party/zlib-1.2.8/zconf.h.cmakein: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/zlib-1.2.8/zconf.h.cmakein -------------------------------------------------------------------------------- /third_party/zlib-1.2.8/zconf.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/zlib-1.2.8/zconf.h.in -------------------------------------------------------------------------------- /third_party/zlib-1.2.8/zlib.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/zlib-1.2.8/zlib.3 -------------------------------------------------------------------------------- /third_party/zlib-1.2.8/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/zlib-1.2.8/zlib.h -------------------------------------------------------------------------------- /third_party/zlib-1.2.8/zlib.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/zlib-1.2.8/zlib.map -------------------------------------------------------------------------------- /third_party/zlib-1.2.8/zlib.pc.cmakein: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/zlib-1.2.8/zlib.pc.cmakein -------------------------------------------------------------------------------- /third_party/zlib-1.2.8/zlib.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/zlib-1.2.8/zlib.pc.in -------------------------------------------------------------------------------- /third_party/zlib-1.2.8/zlib2ansi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/zlib-1.2.8/zlib2ansi -------------------------------------------------------------------------------- /third_party/zlib-1.2.8/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/zlib-1.2.8/zutil.c -------------------------------------------------------------------------------- /third_party/zlib-1.2.8/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/zlib-1.2.8/zutil.h -------------------------------------------------------------------------------- /third_party/zlib.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/third_party/zlib.cmake -------------------------------------------------------------------------------- /tools/astyle-3.4.10.tar.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/tools/astyle-3.4.10.tar.bz2 -------------------------------------------------------------------------------- /tools/code_format.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/tools/code_format.sh -------------------------------------------------------------------------------- /tools/code_style.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/tools/code_style.ini -------------------------------------------------------------------------------- /tools/cp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/tools/cp.py -------------------------------------------------------------------------------- /tools/gen_covs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/tools/gen_covs.sh -------------------------------------------------------------------------------- /tools/license_template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/tools/license_template.txt -------------------------------------------------------------------------------- /tools/license_updater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/tools/license_updater.py -------------------------------------------------------------------------------- /tools/math/fast_sqrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/tools/math/fast_sqrt.c -------------------------------------------------------------------------------- /tools/math/fast_sqrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/tools/math/fast_sqrt.h -------------------------------------------------------------------------------- /tools/math/fast_sqrt_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/tools/math/fast_sqrt_test.cpp -------------------------------------------------------------------------------- /tools/others_porting/platform_gix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/tools/others_porting/platform_gix.c -------------------------------------------------------------------------------- /tools/others_porting/platform_minigui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/tools/others_porting/platform_minigui.c -------------------------------------------------------------------------------- /tools/sponsor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/tools/sponsor.png -------------------------------------------------------------------------------- /unit_tests/ext_array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/unit_tests/ext_array.cpp -------------------------------------------------------------------------------- /unit_tests/ext_linear_alloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/unit_tests/ext_linear_alloc.cpp -------------------------------------------------------------------------------- /unit_tests/ext_list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/unit_tests/ext_list.cpp -------------------------------------------------------------------------------- /unit_tests/ext_svg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/unit_tests/ext_svg.cpp -------------------------------------------------------------------------------- /unit_tests/ext_svg_api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/unit_tests/ext_svg_api.cpp -------------------------------------------------------------------------------- /unit_tests/ext_svg_render.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/unit_tests/ext_svg_render.cpp -------------------------------------------------------------------------------- /unit_tests/ext_tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/unit_tests/ext_tree.cpp -------------------------------------------------------------------------------- /unit_tests/ext_xml_token.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/unit_tests/ext_xml_token.cpp -------------------------------------------------------------------------------- /unit_tests/ps_base_api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/unit_tests/ps_base_api.cpp -------------------------------------------------------------------------------- /unit_tests/ps_canvas_api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/unit_tests/ps_canvas_api.cpp -------------------------------------------------------------------------------- /unit_tests/ps_context_api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/unit_tests/ps_context_api.cpp -------------------------------------------------------------------------------- /unit_tests/ps_matrix_api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/unit_tests/ps_matrix_api.cpp -------------------------------------------------------------------------------- /unit_tests/ps_pod_vector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/unit_tests/ps_pod_vector.cpp -------------------------------------------------------------------------------- /unit_tests/snapshots/svg/svg_image_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/unit_tests/snapshots/svg/svg_image_1.png -------------------------------------------------------------------------------- /unit_tests/snapshots/svg/svg_image_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/unit_tests/snapshots/svg/svg_image_2.png -------------------------------------------------------------------------------- /unit_tests/snapshots/svg/svg_image_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/unit_tests/snapshots/svg/svg_image_3.png -------------------------------------------------------------------------------- /unit_tests/snapshots/svg/svg_image_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/unit_tests/snapshots/svg/svg_image_4.png -------------------------------------------------------------------------------- /unit_tests/snapshots/svg/svg_image_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/unit_tests/snapshots/svg/svg_image_5.png -------------------------------------------------------------------------------- /unit_tests/snapshots/svg/svg_image_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/unit_tests/snapshots/svg/svg_image_6.png -------------------------------------------------------------------------------- /unit_tests/snapshots/svg/svg_image_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/unit_tests/snapshots/svg/svg_image_7.png -------------------------------------------------------------------------------- /unit_tests/snapshots/svg/svg_image_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/unit_tests/snapshots/svg/svg_image_8.png -------------------------------------------------------------------------------- /unit_tests/snapshots/svg/svg_image_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/unit_tests/snapshots/svg/svg_image_9.png -------------------------------------------------------------------------------- /unit_tests/snapshots/svg/svg_shapes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/unit_tests/snapshots/svg/svg_shapes.png -------------------------------------------------------------------------------- /unit_tests/snapshots/svg/svg_simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/unit_tests/snapshots/svg/svg_simple.png -------------------------------------------------------------------------------- /unit_tests/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/unit_tests/test.cpp -------------------------------------------------------------------------------- /unit_tests/test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/unit_tests/test.h -------------------------------------------------------------------------------- /unit_tests/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/unit_tests/test.png -------------------------------------------------------------------------------- /unit_tests/tiger.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/unit_tests/tiger.svg -------------------------------------------------------------------------------- /unit_tests/unit_tests.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/unit_tests/unit_tests.cmake -------------------------------------------------------------------------------- /wasm/Makefile.em: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/wasm/Makefile.em -------------------------------------------------------------------------------- /wasm/build_wasm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/wasm/build_wasm.sh -------------------------------------------------------------------------------- /wasm/export.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/wasm/export.list -------------------------------------------------------------------------------- /wasm/lib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/wasm/lib.js -------------------------------------------------------------------------------- /wasm/pconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/wasm/pconfig.h -------------------------------------------------------------------------------- /wasm/picasso.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/wasm/picasso.wasm -------------------------------------------------------------------------------- /wasm/runtime.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/wasm/runtime.list -------------------------------------------------------------------------------- /wasm/selt2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/wasm/selt2.png -------------------------------------------------------------------------------- /wasm/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecoolx/picasso/HEAD/wasm/test.html --------------------------------------------------------------------------------