├── .gitignore ├── .travis.yml ├── CHANGELOG ├── CMakeLists.txt ├── CREDITS ├── LICENSE ├── README.md ├── VERSION ├── appimage ├── appimage.sh └── excludelist ├── cmake └── modules │ ├── CheckCCompilerFlagAndEnableIt.cmake │ ├── CheckCXXCompilerFlagAndEnableIt.cmake │ ├── CheckCompilerFlagAndEnableIt.cmake │ ├── CheckJPEGSymbols.cmake │ ├── CheckZLIB.cmake │ ├── CodeCoverage.cmake │ ├── CpuMarch.cmake │ ├── FindCppFilt.cmake │ ├── FindDemangler.cmake │ ├── FindEXPAT.cmake │ ├── FindExiv2.cmake │ ├── FindFind.cmake │ ├── FindGCCAr.cmake │ ├── FindGCCNm.cmake │ ├── FindGCCRanLib.cmake │ ├── FindGCov.cmake │ ├── FindGLIB2.cmake │ ├── FindGenHtml.cmake │ ├── FindGettext.cmake │ ├── FindIconv.cmake │ ├── FindLCov.cmake │ ├── FindLLVMAr.cmake │ ├── FindLLVMCXXFilt.cmake │ ├── FindLLVMClangTidy.cmake │ ├── FindLLVMCov.cmake │ ├── FindLLVMLLD.cmake │ ├── FindLLVMNm.cmake │ ├── FindLLVMObjCopy.cmake │ ├── FindLLVMObjDump.cmake │ ├── FindLLVMOptViewer.cmake │ ├── FindLLVMProfData.cmake │ ├── FindLLVMRanLib.cmake │ ├── FindLibFuzzingEngine.cmake │ ├── FindMacIntegration.cmake │ ├── FindMsgfmt.cmake │ ├── FindOpenColorIO.cmake │ ├── FindPugixml.cmake │ ├── FindSphinx.cmake │ ├── FindXMLLINT.cmake │ ├── GCOV.cmake │ ├── GTEST_ADD_TESTS.cmake │ ├── GoogleBenchmark.cmake │ ├── GoogleTest.cmake │ ├── GoogleTest.cmake.in │ ├── LLVMOpenMP.cmake │ ├── LibFindMacros.cmake │ ├── Pugixml.cmake │ ├── Zlib.cmake │ ├── memory-align-alloc.cmake │ ├── run-xmllint.cmake │ └── thread-local.cmake ├── data ├── CMakeLists.txt ├── gmic_film_cluts.gmz ├── mime │ └── x-pfi.xml ├── photoflow.appdata.xml ├── photoflow.desktop └── pixmaps │ ├── 128x128 │ └── photoflow.png │ ├── 16x16 │ └── photoflow.png │ ├── 22x22 │ └── photoflow.png │ ├── 24x24 │ └── photoflow.png │ ├── 256x256 │ └── photoflow.png │ ├── 32x32 │ └── photoflow.png │ ├── 48x48 │ └── photoflow.png │ ├── 64x64 │ └── photoflow.png │ ├── CMakeLists.txt │ ├── phf_logo_128x128.ico │ ├── photoflow_ui.png │ └── scalable │ └── photoflow.svg ├── help └── en │ ├── clone_stamp.hlp │ ├── curves.hlp │ ├── curves.hlp~ │ └── raw_developer.hlp ├── icc ├── ACES-elle-V4-g10.icc ├── ACES-elle-V4-labl.icc ├── ACEScg-elle-V4-g10.icc ├── ACEScg-elle-V4-g22.icc ├── ACEScg-elle-V4-labl.icc ├── ACEScg-elle-V4-srgbtrc.icc ├── ClayRGB-elle-V4-g10.icc ├── ClayRGB-elle-V4-g22.icc ├── ClayRGB-elle-V4-labl.icc ├── ClayRGB-elle-V4-srgbtrc.icc ├── Lab-D50-Identity-elle-V4.icc ├── LargeRGB-elle-V4-g10.icc ├── LargeRGB-elle-V4-g18.icc ├── LargeRGB-elle-V4-labl.icc ├── Rec2020-elle-V4-g10.icc ├── Rec2020-elle-V4-labl.icc ├── Rec2020-elle-V4-rec709.icc ├── WideRGB-elle-V4-g10.icc ├── WideRGB-elle-V4-labl.icc ├── XYZ-D50-Identity-elle-V4.icc ├── cmyk.icm ├── elles-well-behaved-icc-profile-descriptions.txt ├── gpl-2.0.txt ├── plain-text-README-for-elles-well-behaved-icc-profiles.txt ├── sRGB-elle-V2-srgbtrc.icc └── sRGB-elle-V4-srgbtrc.icc ├── icons-inverted ├── actions │ ├── 16x16 │ │ ├── document-export.png │ │ ├── document-new.png │ │ ├── document-open.png │ │ ├── document-save-as.png │ │ └── document-save.png │ └── 32x32 │ │ ├── document-export.png │ │ ├── document-open.png │ │ ├── document-save-as.png │ │ └── document-save.png ├── add-layer.png ├── add-layer.svg ├── close_active.png ├── close_active.svg ├── close_doc.png ├── close_doc.svg ├── collapse.png ├── collapse.svg ├── collapse_doc.png ├── collapse_doc.svg ├── edit2_active.png ├── edit2_active.svg ├── edit_active.png ├── edit_active.svg ├── edit_doc.png ├── edit_doc.svg ├── edit_doc_light.png ├── edit_doc_light.svg ├── edit_inactive.png ├── edit_inactive.svg ├── expand.png ├── expand.svg ├── flash.svg ├── gimp-layers.png ├── group.png ├── group.svg ├── gtk-undo-ltr-small.png ├── gtk-undo-ltr.png ├── highlights_clip_warning.png ├── highlights_clip_warning.svg ├── libre-camera-landscape.png ├── libre-camera-landscape.svg ├── libre-chevron-down-pressed.svg ├── libre-chevron-down-small-pressed.png ├── libre-chevron-down-small-ressed.png ├── libre-chevron-down-small.png ├── libre-chevron-down.svg ├── libre-chevron-up-pressed.svg ├── libre-chevron-up-small-pressed.png ├── libre-chevron-up-small.png ├── libre-chevron-up.svg ├── libre-file-image.png ├── libre-file-image.svg ├── libre-floppy.png ├── libre-floppy.svg ├── libre-folder-open.png ├── libre-folder-open.svg ├── libre-info-pressed.png ├── libre-info-pressed.svg ├── libre-info.png ├── libre-info.svg ├── libre-pencil.svg ├── libre-restore-pressed.png ├── libre-restore-pressed.svg ├── libre-restore.png ├── libre-restore.svg ├── libre-sign-out.png ├── libre-sign-out.svg ├── libre-sliders.png ├── libre-sliders.svg ├── libre-zoom-fit.png ├── libre-zoom-fit.svg ├── libre-zoom-in.png ├── libre-zoom-in.svg ├── libre-zoom-out.png ├── libre-zoom-out.svg ├── mask_active.png ├── mask_active.svg ├── mask_blend.png ├── mask_blend.svg ├── mask_blend_active.png ├── mask_blend_active.svg ├── mask_blend_inactive.png ├── mask_blend_inactive.svg ├── mask_doc.png ├── mask_doc.svg ├── mask_exclusion_active.png ├── mask_exclusion_active.svg ├── mask_exclusion_inactive.png ├── mask_exclusion_inactive.svg ├── mask_inactive.png ├── mask_inactive.svg ├── mask_intersection_active.png ├── mask_intersection_active.svg ├── mask_intersection_inactive.png ├── mask_intersection_inactive.svg ├── mask_union_active.png ├── mask_union_active.svg ├── mask_union_inactive.png ├── mask_union_inactive.svg ├── path4162.png ├── photoflow.png ├── plus.png ├── plus.svg ├── presets_active.svg ├── preview_active.png ├── preview_active.svg ├── preview_inactive.png ├── preview_inactive.svg ├── pushpin.png ├── pushpin.svg ├── pushpin_active.png ├── pushpin_active.svg ├── pushpin_doc.png ├── pushpin_doc.svg ├── pushpin_inactive.png ├── pushpin_inactive.svg ├── redo.png ├── redo.svg ├── redo_active.png ├── redo_active.svg ├── redo_inactive.png ├── redo_inactive.svg ├── reset.png ├── reset.svg ├── reset_active.png ├── reset_active.svg ├── reset_inactive.png ├── reset_inactive.svg ├── save-as.png ├── save-as.svg ├── shadows_clip_warning.png ├── shadows_clip_warning.svg ├── tools │ ├── basic-edits.png │ ├── bucket-fill.png │ ├── camera-flash-2-svgrepo-com.svg │ ├── camera-flash-3-svgrepo-com.svg │ ├── camera-flash-svgrepo-com.svg │ ├── clone.png │ ├── crop.png │ ├── curves.png │ ├── curves.svg │ ├── desaturate.png │ ├── draw.png │ ├── flash-svgrepo-com.svg │ ├── flash.png │ ├── gradient.png │ ├── image_load.png │ ├── path-mask.png │ ├── perspective.png │ └── scale.png ├── trash.png ├── trash.svg ├── undo.png ├── undo.svg ├── undo_active.png ├── undo_active.svg ├── undo_inactive.png ├── undo_inactive.svg ├── visible2_active.png ├── visible2_active.svg ├── visible_active.png ├── visible_active.svg ├── visible_doc.png ├── visible_doc.svg ├── visible_inactive.png └── visible_inactive.svg ├── icons ├── actions │ ├── 16x16 │ │ ├── document-export.png │ │ ├── document-new.png │ │ ├── document-open.png │ │ ├── document-save-as.png │ │ └── document-save.png │ └── 32x32 │ │ ├── document-export.png │ │ ├── document-open.png │ │ ├── document-save-as.png │ │ └── document-save.png ├── add-layer.png ├── close_active.png ├── close_doc.png ├── collapse.png ├── collapse_doc.png ├── edit2_active.png ├── edit_active.png ├── edit_doc.png ├── edit_doc_light.png ├── edit_inactive.png ├── expand.png ├── gimp-layers.png ├── group.png ├── gtk-undo-ltr-small.png ├── gtk-undo-ltr.png ├── highlights_clip_warning.png ├── libre-camera-landscape.png ├── libre-chevron-down-small-pressed.png ├── libre-chevron-down-small-ressed.png ├── libre-chevron-down-small.png ├── libre-chevron-up-small-pressed.png ├── libre-chevron-up-small.png ├── libre-file-image.png ├── libre-floppy.png ├── libre-folder-open.png ├── libre-info-pressed.png ├── libre-info.png ├── libre-restore-pressed.png ├── libre-restore.png ├── libre-sign-out.png ├── libre-sliders.png ├── libre-zoom-fit.png ├── libre-zoom-in.png ├── libre-zoom-out.png ├── mask_active.png ├── mask_blend.png ├── mask_blend_active.png ├── mask_blend_inactive.png ├── mask_doc.png ├── mask_exclusion_active.png ├── mask_exclusion_inactive.png ├── mask_inactive.png ├── mask_intersection_active.png ├── mask_intersection_inactive.png ├── mask_union_active.png ├── mask_union_inactive.png ├── path4162.png ├── photoflow.png ├── plus.png ├── preview_active.png ├── preview_inactive.png ├── pushpin.png ├── pushpin_active.png ├── pushpin_doc.png ├── pushpin_inactive.png ├── redo.png ├── redo_active.png ├── redo_inactive.png ├── reset.png ├── reset_active.png ├── reset_inactive.png ├── save-as.png ├── shadows_clip_warning.png ├── tools │ ├── basic-edits.png │ ├── bucket-fill.png │ ├── clone.png │ ├── crop.png │ ├── curves.png │ ├── desaturate.png │ ├── draw.png │ ├── gradient.png │ ├── image_load.png │ ├── path-mask.png │ ├── perspective.png │ └── scale.png ├── trash.png ├── undo.png ├── undo_active.png ├── undo_inactive.png ├── visible2_active.png ├── visible_active.png ├── visible_doc.png └── visible_inactive.png ├── osx ├── Info.plist.in ├── charset.alias ├── environment.sh ├── gtkrc ├── make_icon.sh ├── package-photoflow.sh ├── photoflow-launcher.sh └── photoflow.bundle ├── po ├── CMakeLists.txt ├── de.po ├── fr.po ├── photoflow.pot └── pl.po ├── presets ├── crossprocess.pfp ├── edge_sharpening.pfp ├── portra.pfp ├── provia.pfp ├── velvia.pfp ├── wavelet-decompose-5.pfp ├── wavelet-sharpening-5.pfp └── web_output.pfp ├── scripts └── exposure-blend │ ├── base.pfi │ ├── blend.pfp │ ├── colorspace_conversion.pfp │ ├── exposure-blend.py │ ├── exposure-blend.sh │ ├── raw.pfp │ └── wb.pfp ├── src ├── CMakeLists.txt ├── base │ ├── array2d.hh │ ├── blend_add.hh │ ├── blend_color.hh │ ├── blend_darken.hh │ ├── blend_divide.hh │ ├── blend_exclusion.hh │ ├── blend_grain_extract.hh │ ├── blend_grain_merge.hh │ ├── blend_hard_light.hh │ ├── blend_lch.hh │ ├── blend_lighten.hh │ ├── blend_luminance.hh │ ├── blend_luminosity.hh │ ├── blend_multiply.hh │ ├── blend_normal.hh │ ├── blend_overlay.hh │ ├── blend_passthrough.hh │ ├── blend_screen.hh │ ├── blend_soft_light.hh │ ├── blend_subtract.hh │ ├── blend_vivid_light.hh │ ├── blender.hh │ ├── cachebuffer.cc │ ├── cachebuffer.hh │ ├── closedsplinecurve.cc │ ├── color.cc │ ├── color.hh │ ├── condition.hh │ ├── curve.cc │ ├── curve.hh │ ├── exif_data.cc │ ├── exif_data.hh │ ├── file_util.cc │ ├── file_util.hh │ ├── fileutils.cc │ ├── fileutils.hh │ ├── format_info.cc │ ├── format_info.hh │ ├── icc │ │ ├── Lab.cc │ │ ├── XYZ.cc │ │ ├── aces.cc │ │ ├── prophoto.cc │ │ ├── prophoto_d65.cc │ │ ├── rec2020.cc │ │ ├── srgb.cc │ │ └── srgb_d50.cc │ ├── iccstore.cc │ ├── iccstore.hh │ ├── image.cc │ ├── image.hh │ ├── image_hierarchy.cc │ ├── image_hierarchy.hh │ ├── imageprocessor.cc │ ├── imageprocessor.hh │ ├── imagepyramid.cc │ ├── imagepyramid.hh │ ├── layer.cc │ ├── layer.hh │ ├── layermanager.cc │ ├── layermanager.hh │ ├── new_operation.cc │ ├── new_operation.hh │ ├── operation.cc │ ├── operation.hh │ ├── options.cc │ ├── options.hh │ ├── pf_file_loader.cc │ ├── pf_file_loader.hh │ ├── pf_mkstemp.cc │ ├── pf_mkstemp.hh │ ├── pftypes.cc │ ├── pftypes.hh │ ├── photoflow.cc │ ├── photoflow.hh │ ├── photoflow_run_batch.cc │ ├── pipeline.cc │ ├── pipeline.hh │ ├── pixel_processor.hh │ ├── print_display_profile.cc │ ├── print_display_profile.hh │ ├── processor.cc │ ├── processor.hh │ ├── processor_imp.hh │ ├── property.cc │ ├── property.hh │ ├── rawbuffer.cc │ ├── rawbuffer.hh │ ├── rawmatrix.hh │ ├── roi.cc │ ├── roi.hh │ ├── splinecurve.cc │ └── splinecurve.hh ├── benchmarks │ ├── CMakeLists.txt │ ├── invert.cc │ └── matrix-3x3.cc ├── external │ ├── darktable │ │ ├── AUTHORS │ │ ├── LICENSE │ │ ├── README.md │ │ ├── RELEASE_NOTES │ │ └── src │ │ │ ├── common │ │ │ ├── bilateral.c │ │ │ ├── bilateral.h │ │ │ ├── colormatrices.c │ │ │ ├── colorspaces.c │ │ │ ├── colorspaces.h │ │ │ └── srgb_tone_curve_values.h │ │ │ ├── develop │ │ │ ├── masks.h │ │ │ └── masks │ │ │ │ ├── path.c │ │ │ │ └── path.c~ │ │ │ ├── external │ │ │ ├── adobe_coeff.c │ │ │ ├── cie_colorimetric_tables.c │ │ │ └── wb_presets.c │ │ │ └── iop │ │ │ ├── clipping.c │ │ │ └── clipping.cc │ ├── exiv2 │ │ ├── AUTHORS │ │ ├── CMakeLists.txt │ │ ├── CMake_msvc.txt │ │ ├── COPYING │ │ ├── COPYING-CMAKE-SCRIPTS │ │ ├── FindExiv2.cmake │ │ ├── README │ │ ├── README-CMAKE │ │ ├── TODO-CMAKE │ │ ├── config │ │ │ ├── CMakeChecks.txt │ │ │ ├── Doxyfile │ │ │ ├── FindEXPAT.cmake │ │ │ ├── FindIconv.cmake │ │ │ ├── FindMSGFMT.cmake │ │ │ ├── FindSSH.cmake │ │ │ ├── Makefile.in │ │ │ ├── ReadMe-Autotools.txt │ │ │ ├── aclocal.m4 │ │ │ ├── config.guess │ │ │ ├── config.h.cmake │ │ │ ├── config.h.in │ │ │ ├── config.make │ │ │ ├── config.mk.in │ │ │ ├── config.rpath │ │ │ ├── config.sub │ │ │ ├── configure.ac │ │ │ ├── exiv2.lsm.cmake │ │ │ ├── exiv2.pc.cmake │ │ │ ├── exiv2.pc.in │ │ │ ├── exiv2_uninstall.cmake │ │ │ ├── install-sh │ │ │ ├── ltmain.sh │ │ │ └── mkinstalldirs │ │ ├── include │ │ │ └── exiv2 │ │ │ │ ├── asfvideo.hpp │ │ │ │ ├── basicio.hpp │ │ │ │ ├── bmpimage.hpp │ │ │ │ ├── config_exiv2.h │ │ │ │ ├── convert.hpp │ │ │ │ ├── cr2image.hpp │ │ │ │ ├── crwimage.hpp │ │ │ │ ├── datasets.hpp │ │ │ │ ├── easyaccess.hpp │ │ │ │ ├── epsimage.hpp │ │ │ │ ├── error.hpp │ │ │ │ ├── exif.hpp │ │ │ │ ├── exiv2.hpp │ │ │ │ ├── exv_msvc-webready.h │ │ │ │ ├── exv_msvc.h │ │ │ │ ├── futils.hpp │ │ │ │ ├── gifimage.hpp │ │ │ │ ├── http.hpp │ │ │ │ ├── image.hpp │ │ │ │ ├── ini.hpp │ │ │ │ ├── iptc.hpp │ │ │ │ ├── jp2image.hpp │ │ │ │ ├── jpgimage.hpp │ │ │ │ ├── matroskavideo.hpp │ │ │ │ ├── metadatum.hpp │ │ │ │ ├── mrwimage.hpp │ │ │ │ ├── orfimage.hpp │ │ │ │ ├── pgfimage.hpp │ │ │ │ ├── pngimage.hpp │ │ │ │ ├── preview.hpp │ │ │ │ ├── properties.hpp │ │ │ │ ├── psdimage.hpp │ │ │ │ ├── quicktimevideo.hpp │ │ │ │ ├── rafimage.hpp │ │ │ │ ├── riffvideo.hpp │ │ │ │ ├── rw2image.hpp │ │ │ │ ├── rwlock.hpp │ │ │ │ ├── ssh.hpp │ │ │ │ ├── svn_version.h │ │ │ │ ├── tags.hpp │ │ │ │ ├── tgaimage.hpp │ │ │ │ ├── tiffimage.hpp │ │ │ │ ├── types.hpp │ │ │ │ ├── utilsvideo.hpp │ │ │ │ ├── value.hpp │ │ │ │ ├── version.hpp │ │ │ │ ├── webpimage.hpp │ │ │ │ ├── xmp.hpp │ │ │ │ └── xmpsidecar.hpp │ │ ├── po │ │ │ ├── CMakeLists.txt │ │ │ ├── ChangeLog │ │ │ ├── LINGUAS │ │ │ ├── Makefile.in.in │ │ │ ├── Makevars │ │ │ ├── POTFILES.in │ │ │ ├── Rules-quot │ │ │ ├── boldquot.sed │ │ │ ├── bs.po │ │ │ ├── de.po │ │ │ ├── en@boldquot.header │ │ │ ├── en@quot.header │ │ │ ├── es.po │ │ │ ├── exiv2.pot │ │ │ ├── fi.po │ │ │ ├── fr.po │ │ │ ├── gl.po │ │ │ ├── insert-header.sin │ │ │ ├── ms.po │ │ │ ├── pl.po │ │ │ ├── pt.po │ │ │ ├── quot.sed │ │ │ ├── remove-potcdate.sin │ │ │ ├── ru.po │ │ │ ├── sk.po │ │ │ ├── sv.po │ │ │ ├── ug.po │ │ │ ├── uk.po │ │ │ └── vi.po │ │ ├── src │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile │ │ │ ├── TODO │ │ │ ├── actions.cpp │ │ │ ├── actions.hpp │ │ │ ├── asfvideo.cpp │ │ │ ├── basicio.cpp │ │ │ ├── bmpimage.cpp │ │ │ ├── canonmn.cpp │ │ │ ├── canonmn_int.hpp │ │ │ ├── casiomn.cpp │ │ │ ├── casiomn_int.hpp │ │ │ ├── convert.cpp │ │ │ ├── cr2image.cpp │ │ │ ├── cr2image_int.hpp │ │ │ ├── crwedit.cpp │ │ │ ├── crwimage.cpp │ │ │ ├── crwimage_int.hpp │ │ │ ├── crwparse.cpp │ │ │ ├── datasets.cpp │ │ │ ├── doxygen.hpp.in │ │ │ ├── easyaccess.cpp │ │ │ ├── epsimage.cpp │ │ │ ├── error.cpp │ │ │ ├── exif.cpp │ │ │ ├── exiv2.1 │ │ │ ├── exiv2.cpp │ │ │ ├── exiv2app.hpp │ │ │ ├── fff.h │ │ │ ├── fujimn.cpp │ │ │ ├── fujimn_int.hpp │ │ │ ├── futils.cpp │ │ │ ├── getopt_win32.c │ │ │ ├── getopt_win32.h │ │ │ ├── gifimage.cpp │ │ │ ├── http.cpp │ │ │ ├── i18n.h │ │ │ ├── image.cpp │ │ │ ├── image_int.hpp │ │ │ ├── ini.cpp │ │ │ ├── iptc.cpp │ │ │ ├── jp2image.cpp │ │ │ ├── jpgimage.cpp │ │ │ ├── localtime.c │ │ │ ├── makernote.cpp │ │ │ ├── makernote_int.hpp │ │ │ ├── matroskavideo.cpp │ │ │ ├── metadatum.cpp │ │ │ ├── minoltamn.cpp │ │ │ ├── minoltamn_int.hpp │ │ │ ├── mrwimage.cpp │ │ │ ├── mrwthumb.cpp │ │ │ ├── nikonmn.cpp │ │ │ ├── nikonmn_int.hpp │ │ │ ├── olympusmn.cpp │ │ │ ├── olympusmn_int.hpp │ │ │ ├── orfimage.cpp │ │ │ ├── orfimage_int.hpp │ │ │ ├── panasonicmn.cpp │ │ │ ├── panasonicmn_int.hpp │ │ │ ├── pentaxmn.cpp │ │ │ ├── pentaxmn_int.hpp │ │ │ ├── pgfimage.cpp │ │ │ ├── pngchunk.cpp │ │ │ ├── pngchunk_int.hpp │ │ │ ├── pngimage.cpp │ │ │ ├── preview.cpp │ │ │ ├── private.h │ │ │ ├── properties.cpp │ │ │ ├── psdimage.cpp │ │ │ ├── quicktimevideo.cpp │ │ │ ├── rafimage.cpp │ │ │ ├── rcsid_int.hpp │ │ │ ├── riffvideo.cpp │ │ │ ├── rw2image.cpp │ │ │ ├── rw2image_int.hpp │ │ │ ├── samsungmn.cpp │ │ │ ├── samsungmn_int.hpp │ │ │ ├── sigmamn.cpp │ │ │ ├── sigmamn_int.hpp │ │ │ ├── sonymn.cpp │ │ │ ├── sonymn_int.hpp │ │ │ ├── src │ │ │ ├── ssh.cpp │ │ │ ├── svn_version.h │ │ │ ├── svn_version.h.in │ │ │ ├── svn_version.sh │ │ │ ├── tags.cpp │ │ │ ├── tags_int.hpp │ │ │ ├── tgaimage.cpp │ │ │ ├── tiff-test.cpp │ │ │ ├── tiffcomposite.cpp │ │ │ ├── tiffcomposite_int.hpp │ │ │ ├── tifffwd_int.hpp │ │ │ ├── tiffimage.cpp │ │ │ ├── tiffimage_int.hpp │ │ │ ├── tiffmn-test.cpp │ │ │ ├── tiffvisitor.cpp │ │ │ ├── tiffvisitor_int.hpp │ │ │ ├── timegm.h │ │ │ ├── types.cpp │ │ │ ├── tzfile.h │ │ │ ├── utils.cpp │ │ │ ├── utils.hpp │ │ │ ├── utilsvideo.cpp │ │ │ ├── utiltest.cpp │ │ │ ├── value.cpp │ │ │ ├── version.cpp │ │ │ ├── webpimage.cpp │ │ │ ├── xmp.cpp │ │ │ ├── xmpdump.cpp │ │ │ └── xmpsidecar.cpp │ │ └── xmpsdk │ │ │ ├── CMakeLists.txt │ │ │ ├── include │ │ │ ├── MD5.h │ │ │ ├── TXMPIterator.hpp │ │ │ ├── TXMPMeta.hpp │ │ │ ├── TXMPUtils.hpp │ │ │ ├── XMP.incl_cpp │ │ │ ├── XMPSDK.hpp │ │ │ ├── XMP_Const.h │ │ │ ├── XMP_Environment.h │ │ │ ├── XMP_Version.h │ │ │ └── client-glue │ │ │ │ ├── TXMPIterator.incl_cpp │ │ │ │ ├── TXMPMeta.incl_cpp │ │ │ │ ├── TXMPUtils.incl_cpp │ │ │ │ ├── WXMPFiles.hpp │ │ │ │ ├── WXMPIterator.hpp │ │ │ │ ├── WXMPMeta.hpp │ │ │ │ ├── WXMPUtils.hpp │ │ │ │ └── WXMP_Common.hpp │ │ │ └── src │ │ │ ├── ExpatAdapter.cpp │ │ │ ├── ExpatAdapter.hpp │ │ │ ├── MD5.cpp │ │ │ ├── Makefile │ │ │ ├── ParseRDF.cpp │ │ │ ├── UnicodeConversions.cpp │ │ │ ├── UnicodeConversions.hpp │ │ │ ├── UnicodeInlines.incl_cpp │ │ │ ├── WXMPIterator.cpp │ │ │ ├── WXMPMeta.cpp │ │ │ ├── WXMPUtils.cpp │ │ │ ├── XMLParserAdapter.hpp │ │ │ ├── XML_Node.cpp │ │ │ ├── XMPCore_Impl.cpp │ │ │ ├── XMPCore_Impl.hpp │ │ │ ├── XMPIterator.cpp │ │ │ ├── XMPIterator.hpp │ │ │ ├── XMPMeta-GetSet.cpp │ │ │ ├── XMPMeta-Parse.cpp │ │ │ ├── XMPMeta-Serialize.cpp │ │ │ ├── XMPMeta.cpp │ │ │ ├── XMPMeta.hpp │ │ │ ├── XMPUtils-FileInfo.cpp │ │ │ ├── XMPUtils.cpp │ │ │ ├── XMPUtils.hpp │ │ │ └── XMP_BuildInfo.h │ ├── lensfun │ │ ├── CMakeLists.txt │ │ ├── ChangeLog │ │ ├── README.md │ │ ├── cmake │ │ │ └── modules │ │ │ │ ├── CodeCoverage.cmake │ │ │ │ ├── FindGLIB2.cmake │ │ │ │ └── toolchain_win32.cmake │ │ ├── data │ │ │ └── db │ │ │ │ ├── 6x6.xml │ │ │ │ ├── actioncams.xml │ │ │ │ ├── compact-canon.xml │ │ │ │ ├── compact-casio.xml │ │ │ │ ├── compact-fujifilm.xml │ │ │ │ ├── compact-kodak.xml │ │ │ │ ├── compact-konica-minolta.xml │ │ │ │ ├── compact-leica.xml │ │ │ │ ├── compact-nikon.xml │ │ │ │ ├── compact-olympus.xml │ │ │ │ ├── compact-panasonic.xml │ │ │ │ ├── compact-pentax.xml │ │ │ │ ├── compact-ricoh.xml │ │ │ │ ├── compact-samsung.xml │ │ │ │ ├── compact-sigma.xml │ │ │ │ ├── compact-sony.xml │ │ │ │ ├── contax.xml │ │ │ │ ├── generic.xml │ │ │ │ ├── lensfun-database.dtd │ │ │ │ ├── lensfun-database.xsd │ │ │ │ ├── mil-canon.xml │ │ │ │ ├── mil-fujifilm.xml │ │ │ │ ├── mil-nikon.xml │ │ │ │ ├── mil-olympus.xml │ │ │ │ ├── mil-panasonic.xml │ │ │ │ ├── mil-pentax.xml │ │ │ │ ├── mil-samsung.xml │ │ │ │ ├── mil-samyang.xml │ │ │ │ ├── mil-sigma.xml │ │ │ │ ├── mil-sony.xml │ │ │ │ ├── mil-tamron.xml │ │ │ │ ├── mil-zeiss.xml │ │ │ │ ├── misc.xml │ │ │ │ ├── rf-leica.xml │ │ │ │ ├── slr-canon.xml │ │ │ │ ├── slr-hasselblad.xml │ │ │ │ ├── slr-konica-minolta.xml │ │ │ │ ├── slr-leica.xml │ │ │ │ ├── slr-nikon.xml │ │ │ │ ├── slr-olympus.xml │ │ │ │ ├── slr-panasonic.xml │ │ │ │ ├── slr-pentax.xml │ │ │ │ ├── slr-ricoh.xml │ │ │ │ ├── slr-samsung.xml │ │ │ │ ├── slr-samyang.xml │ │ │ │ ├── slr-schneider.xml │ │ │ │ ├── slr-sigma.xml │ │ │ │ ├── slr-soligor.xml │ │ │ │ ├── slr-sony.xml │ │ │ │ ├── slr-tamron.xml │ │ │ │ ├── slr-tokina.xml │ │ │ │ ├── slr-ussr.xml │ │ │ │ ├── slr-vivitar.xml │ │ │ │ ├── slr-zeiss.xml │ │ │ │ └── timestamp.txt │ │ ├── include │ │ │ ├── lensfun │ │ │ │ ├── config.h.in.cmake │ │ │ │ └── lensfun.h.in │ │ │ └── regex │ │ │ │ └── regex.h │ │ └── libs │ │ │ ├── CMakeLists.txt │ │ │ ├── getopt │ │ │ ├── CMakeLists.txt │ │ │ ├── LICENSE │ │ │ ├── getopt.c │ │ │ └── getopt.h │ │ │ ├── lensfun │ │ │ ├── CMakeLists.txt │ │ │ ├── auxfun.cpp │ │ │ ├── camera.cpp │ │ │ ├── cpuid.cpp │ │ │ ├── database.cpp │ │ │ ├── lens.cpp │ │ │ ├── lensfun.pc.cmake │ │ │ ├── lensfunprv.h │ │ │ ├── mod-color-sse.cpp │ │ │ ├── mod-color-sse2.cpp │ │ │ ├── mod-color.cpp │ │ │ ├── mod-coord-sse.cpp │ │ │ ├── mod-coord.cpp │ │ │ ├── mod-pc.cpp │ │ │ ├── mod-subpix.cpp │ │ │ ├── modifier.cpp │ │ │ ├── mount.cpp │ │ │ └── windows │ │ │ │ ├── auxfun.cpp │ │ │ │ └── mathconstants.h │ │ │ └── regex │ │ │ ├── CMakeLists.txt │ │ │ ├── README │ │ │ ├── regcomp.c │ │ │ ├── regerror.c │ │ │ ├── regexec.c │ │ │ ├── tre-ast.c │ │ │ ├── tre-ast.h │ │ │ ├── tre-compile.c │ │ │ ├── tre-compile.h │ │ │ ├── tre-internal.h │ │ │ ├── tre-match-approx.c │ │ │ ├── tre-match-backtrack.c │ │ │ ├── tre-match-parallel.c │ │ │ ├── tre-match-utils.h │ │ │ ├── tre-mem.c │ │ │ ├── tre-mem.h │ │ │ ├── tre-parse.c │ │ │ ├── tre-parse.h │ │ │ ├── tre-stack.c │ │ │ ├── tre-stack.h │ │ │ ├── xmalloc.c │ │ │ └── xmalloc.h │ ├── librtprocess │ │ ├── CMakeLists.txt │ │ ├── CPackConfig.cmake │ │ ├── CompilerChecks.cmake │ │ ├── DefineOptions.cmake │ │ ├── LICENSE.txt │ │ ├── ProcessorTargets.cmake │ │ ├── README.md │ │ ├── cmake │ │ │ └── Modules │ │ │ │ ├── AddCXXCompilerFlag.cmake │ │ │ │ ├── COPYING-CMAKE-SCRIPTS │ │ │ │ ├── CheckCXXCompilerFlagSSP.cmake │ │ │ │ ├── DefineCMakeDefaults.cmake │ │ │ │ ├── DefineCompilerFlags.cmake │ │ │ │ └── FindNSIS.cmake │ │ ├── pkgconfig │ │ │ ├── CMakeLists.txt │ │ │ └── rtprocess.pc.cmake │ │ ├── rtprocess-config.cmake.in │ │ └── src │ │ │ ├── CMakeLists.txt │ │ │ ├── demosaic │ │ │ ├── ahd.cc │ │ │ ├── amaze.cc │ │ │ ├── bayerfast.cc │ │ │ ├── border.cc │ │ │ ├── dcb.cc │ │ │ ├── hphd.cc │ │ │ ├── igv.cc │ │ │ ├── lmmse.cc │ │ │ ├── markesteijn.cc │ │ │ ├── rcd.cc │ │ │ ├── vng4.cc │ │ │ └── xtransfast.cc │ │ │ ├── include │ │ │ ├── LUT.h │ │ │ ├── StopWatch.h │ │ │ ├── array2D.h │ │ │ ├── bayerhelper.h │ │ │ ├── boxblur.h │ │ │ ├── gauss.h │ │ │ ├── helpersse2.h │ │ │ ├── jaggedarray.h │ │ │ ├── librtprocess.h │ │ │ ├── median.h │ │ │ ├── mytime.h │ │ │ ├── opthelper.h │ │ │ ├── rt_math.h │ │ │ ├── sleef.c │ │ │ ├── sleefsseavx.c │ │ │ └── xtranshelper.h │ │ │ ├── postprocess │ │ │ └── hilite_recon.cc │ │ │ └── preprocess │ │ │ └── CA_correct.cc │ └── rawspeed │ │ ├── .ci │ │ ├── .gitattributes │ │ ├── Brewfile │ │ ├── Dockerfile │ │ ├── appveyor.yml │ │ ├── ci-script.sh │ │ ├── codecov.yml │ │ ├── coverity_model.cpp │ │ ├── sonar-project.properties │ │ ├── wro_deploy.enc │ │ ├── www-finish.sh │ │ └── www-prepare.sh │ │ ├── .clang-format │ │ ├── .clang-tidy │ │ ├── .gitattributes │ │ ├── .github │ │ └── CODEOWNERS │ │ ├── .gitignore │ │ ├── .mailmap │ │ ├── .travis.yml │ │ ├── CMakeLists.txt │ │ ├── LICENSE │ │ ├── README.rst │ │ ├── bench │ │ ├── CMakeLists.txt │ │ └── librawspeed │ │ │ ├── CMakeLists.txt │ │ │ ├── bench │ │ │ ├── CMakeLists.txt │ │ │ ├── Common.cpp │ │ │ └── Common.h │ │ │ ├── common │ │ │ ├── CMakeLists.txt │ │ │ └── DefaultInitAllocatorAdaptorBenchmark.cpp │ │ │ ├── decompressors │ │ │ ├── CMakeLists.txt │ │ │ └── DeflateDecompressorBenchmark.cpp │ │ │ ├── interpolators │ │ │ ├── CMakeLists.txt │ │ │ └── Cr2sRawInterpolatorBenchmark.cpp │ │ │ ├── io │ │ │ ├── BitStreamBenchmark.cpp │ │ │ └── CMakeLists.txt │ │ │ └── metadata │ │ │ ├── CMakeLists.txt │ │ │ └── CameraMetaDataBenchmark.cpp │ │ ├── cmake │ │ ├── Modules │ │ │ ├── CheckCXXCompilerFlagAndEnableIt.cmake │ │ │ ├── CheckJPEGSymbols.cmake │ │ │ ├── CheckZLIB.cmake │ │ │ ├── CpuMarch.cmake │ │ │ ├── FindCppFilt.cmake │ │ │ ├── FindDemangler.cmake │ │ │ ├── FindFind.cmake │ │ │ ├── FindGCCAr.cmake │ │ │ ├── FindGCCNm.cmake │ │ │ ├── FindGCCRanLib.cmake │ │ │ ├── FindGCov.cmake │ │ │ ├── FindGenHtml.cmake │ │ │ ├── FindLCov.cmake │ │ │ ├── FindLLVMAr.cmake │ │ │ ├── FindLLVMCXXFilt.cmake │ │ │ ├── FindLLVMClangTidy.cmake │ │ │ ├── FindLLVMCov.cmake │ │ │ ├── FindLLVMLLD.cmake │ │ │ ├── FindLLVMNm.cmake │ │ │ ├── FindLLVMObjCopy.cmake │ │ │ ├── FindLLVMObjDump.cmake │ │ │ ├── FindLLVMOptViewer.cmake │ │ │ ├── FindLLVMProfData.cmake │ │ │ ├── FindLLVMRanLib.cmake │ │ │ ├── FindLibFuzzingEngine.cmake │ │ │ ├── FindPugixml.cmake │ │ │ ├── FindSphinx.cmake │ │ │ ├── FindXMLLINT.cmake │ │ │ ├── GoogleBenchmark.cmake │ │ │ ├── GoogleBenchmark.cmake.in │ │ │ ├── GoogleTest.cmake │ │ │ ├── GoogleTest.cmake.in │ │ │ ├── LLVMOpenMP.cmake │ │ │ ├── LLVMOpenMP.cmake.in │ │ │ ├── LibFindMacros.cmake │ │ │ ├── Pugixml.cmake │ │ │ ├── Pugixml.cmake.in │ │ │ ├── Zlib.cmake │ │ │ ├── Zlib.cmake.in │ │ │ ├── memory-align-alloc.cmake │ │ │ ├── run-xmllint.cmake │ │ │ └── thread-local.cmake │ │ ├── build-type.cmake │ │ ├── clang-tidy.cmake │ │ ├── cmake-command-wrappers.cmake │ │ ├── compiler-flags.cmake │ │ ├── compiler-versions.cmake │ │ ├── compiler-warnings-clang.cmake │ │ ├── compiler-warnings-gcc.cmake │ │ ├── compiler-warnings.cmake │ │ ├── debug-info.cmake │ │ ├── gcc-coverage.cmake │ │ ├── gcc-gcov.cmake │ │ ├── gcc-toolchain.cmake │ │ ├── genhtml.cmake │ │ ├── iwyu.cmake │ │ ├── iwyu.imp │ │ ├── lcov.cmake │ │ ├── libc++.cmake │ │ ├── llvm-cov.cmake │ │ ├── llvm-opt-report.cmake │ │ ├── llvm-profdata.cmake │ │ ├── llvm-toolchain.cmake │ │ ├── sample-based-testing.cmake │ │ └── src-dependencies.cmake │ │ ├── credits.txt │ │ ├── data │ │ ├── CMakeLists.txt │ │ ├── CMakeLists.txt.bak │ │ ├── README.md │ │ ├── cameras.xml │ │ ├── cameras.xsd │ │ └── showcameras.xsl │ │ ├── docs │ │ ├── CMakeLists.txt │ │ ├── CameraSupport.rst │ │ ├── Doxyfile.in │ │ ├── Doxygen.rst │ │ ├── IntegrationTesting.rst │ │ ├── ReferenceSampleArchive.rst │ │ ├── conf.py │ │ ├── index.rst │ │ ├── lnt │ │ │ └── index.rst │ │ └── sphinx-pyexec.py │ │ ├── fuzz │ │ ├── CMakeLists.txt │ │ ├── all-fuzzers.txt │ │ ├── common.dict │ │ ├── corpora │ │ │ └── CMakeLists.txt │ │ ├── libFuzzer_dummy_main.cpp │ │ ├── librawspeed │ │ │ ├── CMakeLists.txt │ │ │ ├── decoders │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── TiffDecoders │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── main.cpp │ │ │ ├── decompressors │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Cr2Decompressor.cpp │ │ │ │ ├── CrwDecompressor.cpp │ │ │ │ ├── DummyLJpegDecompressor.cpp │ │ │ │ ├── FujiDecompressor.cpp │ │ │ │ ├── HasselbladDecompressor.cpp │ │ │ │ ├── HuffmanTable │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Common.h │ │ │ │ │ ├── Dual.cpp │ │ │ │ │ └── Solo.cpp │ │ │ │ ├── KodakDecompressor.cpp │ │ │ │ ├── LJpegDecompressor.cpp │ │ │ │ ├── NikonDecompressor.cpp │ │ │ │ ├── OlympusDecompressor.cpp │ │ │ │ ├── PanasonicDecompressorV4.cpp │ │ │ │ ├── PanasonicDecompressorV5.cpp │ │ │ │ ├── PanasonicDecompressorV6.cpp │ │ │ │ ├── PentaxDecompressor.cpp │ │ │ │ ├── PhaseOneDecompressor.cpp │ │ │ │ ├── SamsungV0Decompressor.cpp │ │ │ │ ├── SamsungV1Decompressor.cpp │ │ │ │ ├── SamsungV2Decompressor.cpp │ │ │ │ ├── SonyArw1Decompressor.cpp │ │ │ │ ├── SonyArw2Decompressor.cpp │ │ │ │ └── VC5Decompressor.cpp │ │ │ ├── fuzz │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Common.cpp │ │ │ │ ├── Common.h │ │ │ │ └── RawSpeed.cpp │ │ │ └── parsers │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── main.cpp │ │ └── rawspeed │ │ │ ├── CMakeLists.txt │ │ │ └── main.cpp │ │ ├── lnt │ │ ├── CMakeLists.txt │ │ ├── README.rst │ │ ├── RawSpeed.cpp │ │ ├── build-lit.local.cfg │ │ ├── lit.local.cfg │ │ ├── litsupport_rawspeed │ │ │ ├── __init__.py │ │ │ └── modules │ │ │ │ ├── __init__.py │ │ │ │ └── rsbench.py │ │ └── raw-sample-archive │ │ │ ├── CMakeLists.txt │ │ │ ├── lit.local.cfg │ │ │ └── rsbench │ │ │ ├── CMakeLists.txt │ │ │ └── lit.local.cfg │ │ ├── src │ │ ├── CMakeLists.txt │ │ ├── config.h.in │ │ ├── external │ │ │ ├── AddressSanitizer.h │ │ │ ├── CMakeLists.txt │ │ │ ├── MemorySanitizer.h │ │ │ ├── ThreadSafetyAnalysis.h │ │ │ └── gopro │ │ │ │ └── vc5 │ │ │ │ └── table17.inc │ │ ├── librawspeed │ │ │ ├── CMakeLists.txt │ │ │ ├── README.md │ │ │ ├── RawSpeed-API.h │ │ │ ├── common │ │ │ │ ├── Array2DRef.h │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── ChecksumFile.cpp │ │ │ │ ├── ChecksumFile.h │ │ │ │ ├── Common.cpp │ │ │ │ ├── Common.h │ │ │ │ ├── Cpuid.cpp │ │ │ │ ├── Cpuid.h │ │ │ │ ├── DefaultInitAllocatorAdaptor.h │ │ │ │ ├── DngOpcodes.cpp │ │ │ │ ├── DngOpcodes.h │ │ │ │ ├── ErrorLog.cpp │ │ │ │ ├── ErrorLog.h │ │ │ │ ├── GetNumberOfProcessorCores.cpp │ │ │ │ ├── Memory.cpp │ │ │ │ ├── Memory.h │ │ │ │ ├── Mutex.h │ │ │ │ ├── NORangesSet.h │ │ │ │ ├── Optional.h │ │ │ │ ├── Point.h │ │ │ │ ├── Range.h │ │ │ │ ├── RawImage.cpp │ │ │ │ ├── RawImage.h │ │ │ │ ├── RawImageDataFloat.cpp │ │ │ │ ├── RawImageDataU16.cpp │ │ │ │ ├── RawspeedException.h │ │ │ │ ├── SimpleLUT.h │ │ │ │ ├── Spline.h │ │ │ │ ├── TableLookUp.cpp │ │ │ │ └── TableLookUp.h │ │ │ ├── decoders │ │ │ │ ├── AbstractTiffDecoder.cpp │ │ │ │ ├── AbstractTiffDecoder.h │ │ │ │ ├── ArwDecoder.cpp │ │ │ │ ├── ArwDecoder.h │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Cr2Decoder.cpp │ │ │ │ ├── Cr2Decoder.h │ │ │ │ ├── CrwDecoder.cpp │ │ │ │ ├── CrwDecoder.h │ │ │ │ ├── DcrDecoder.cpp │ │ │ │ ├── DcrDecoder.h │ │ │ │ ├── DcsDecoder.cpp │ │ │ │ ├── DcsDecoder.h │ │ │ │ ├── DngDecoder.cpp │ │ │ │ ├── DngDecoder.h │ │ │ │ ├── ErfDecoder.cpp │ │ │ │ ├── ErfDecoder.h │ │ │ │ ├── IiqDecoder.cpp │ │ │ │ ├── IiqDecoder.h │ │ │ │ ├── KdcDecoder.cpp │ │ │ │ ├── KdcDecoder.h │ │ │ │ ├── MefDecoder.cpp │ │ │ │ ├── MefDecoder.h │ │ │ │ ├── MosDecoder.cpp │ │ │ │ ├── MosDecoder.h │ │ │ │ ├── MrwDecoder.cpp │ │ │ │ ├── MrwDecoder.h │ │ │ │ ├── NakedDecoder.cpp │ │ │ │ ├── NakedDecoder.h │ │ │ │ ├── NefDecoder.cpp │ │ │ │ ├── NefDecoder.h │ │ │ │ ├── OrfDecoder.cpp │ │ │ │ ├── OrfDecoder.h │ │ │ │ ├── PefDecoder.cpp │ │ │ │ ├── PefDecoder.h │ │ │ │ ├── RafDecoder.cpp │ │ │ │ ├── RafDecoder.h │ │ │ │ ├── RawDecoder.cpp │ │ │ │ ├── RawDecoder.h │ │ │ │ ├── RawDecoderException.h │ │ │ │ ├── Rw2Decoder.cpp │ │ │ │ ├── Rw2Decoder.h │ │ │ │ ├── SimpleTiffDecoder.cpp │ │ │ │ ├── SimpleTiffDecoder.h │ │ │ │ ├── SrwDecoder.cpp │ │ │ │ ├── SrwDecoder.h │ │ │ │ ├── ThreefrDecoder.cpp │ │ │ │ └── ThreefrDecoder.h │ │ │ ├── decompressors │ │ │ │ ├── AbstractDecompressor.h │ │ │ │ ├── AbstractDngDecompressor.cpp │ │ │ │ ├── AbstractDngDecompressor.h │ │ │ │ ├── AbstractHuffmanTable.h │ │ │ │ ├── AbstractLJpegDecompressor.cpp │ │ │ │ ├── AbstractLJpegDecompressor.h │ │ │ │ ├── AbstractSamsungDecompressor.h │ │ │ │ ├── BinaryHuffmanTree.h │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Cr2Decompressor.cpp │ │ │ │ ├── Cr2Decompressor.h │ │ │ │ ├── CrwDecompressor.cpp │ │ │ │ ├── CrwDecompressor.h │ │ │ │ ├── DeflateDecompressor.cpp │ │ │ │ ├── DeflateDecompressor.h │ │ │ │ ├── FujiDecompressor.cpp │ │ │ │ ├── FujiDecompressor.h │ │ │ │ ├── HasselbladDecompressor.cpp │ │ │ │ ├── HasselbladDecompressor.h │ │ │ │ ├── HuffmanTable.h │ │ │ │ ├── HuffmanTableLUT.h │ │ │ │ ├── HuffmanTableLookup.h │ │ │ │ ├── HuffmanTableTree.h │ │ │ │ ├── HuffmanTableVector.h │ │ │ │ ├── JpegDecompressor.cpp │ │ │ │ ├── JpegDecompressor.h │ │ │ │ ├── KodakDecompressor.cpp │ │ │ │ ├── KodakDecompressor.h │ │ │ │ ├── LJpegDecompressor.cpp │ │ │ │ ├── LJpegDecompressor.h │ │ │ │ ├── NikonDecompressor.cpp │ │ │ │ ├── NikonDecompressor.h │ │ │ │ ├── OlympusDecompressor.cpp │ │ │ │ ├── OlympusDecompressor.h │ │ │ │ ├── PanasonicDecompressorV4.cpp │ │ │ │ ├── PanasonicDecompressorV4.h │ │ │ │ ├── PanasonicDecompressorV5.cpp │ │ │ │ ├── PanasonicDecompressorV5.h │ │ │ │ ├── PanasonicDecompressorV6.cpp │ │ │ │ ├── PanasonicDecompressorV6.h │ │ │ │ ├── PentaxDecompressor.cpp │ │ │ │ ├── PentaxDecompressor.h │ │ │ │ ├── PhaseOneDecompressor.cpp │ │ │ │ ├── PhaseOneDecompressor.h │ │ │ │ ├── SamsungV0Decompressor.cpp │ │ │ │ ├── SamsungV0Decompressor.h │ │ │ │ ├── SamsungV1Decompressor.cpp │ │ │ │ ├── SamsungV1Decompressor.h │ │ │ │ ├── SamsungV2Decompressor.cpp │ │ │ │ ├── SamsungV2Decompressor.h │ │ │ │ ├── SonyArw1Decompressor.cpp │ │ │ │ ├── SonyArw1Decompressor.h │ │ │ │ ├── SonyArw2Decompressor.cpp │ │ │ │ ├── SonyArw2Decompressor.h │ │ │ │ ├── UncompressedDecompressor.cpp │ │ │ │ ├── UncompressedDecompressor.h │ │ │ │ ├── VC5Decompressor.cpp │ │ │ │ └── VC5Decompressor.h │ │ │ ├── interpolators │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Cr2sRawInterpolator.cpp │ │ │ │ └── Cr2sRawInterpolator.h │ │ │ ├── io │ │ │ │ ├── BitPumpJPEG.h │ │ │ │ ├── BitPumpLSB.h │ │ │ │ ├── BitPumpMSB.h │ │ │ │ ├── BitPumpMSB16.h │ │ │ │ ├── BitPumpMSB32.h │ │ │ │ ├── BitStream.cpp │ │ │ │ ├── BitStream.h │ │ │ │ ├── Buffer.h │ │ │ │ ├── ByteStream.h │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Endianness.h │ │ │ │ ├── FileIO.h │ │ │ │ ├── FileIOException.h │ │ │ │ ├── FileReader.cpp │ │ │ │ ├── FileReader.h │ │ │ │ ├── FileWriter.cpp │ │ │ │ ├── FileWriter.h │ │ │ │ └── IOException.h │ │ │ ├── metadata │ │ │ │ ├── BlackArea.h │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Camera.cpp │ │ │ │ ├── Camera.h │ │ │ │ ├── CameraMetaData.cpp │ │ │ │ ├── CameraMetaData.h │ │ │ │ ├── CameraMetadataException.h │ │ │ │ ├── CameraSensorInfo.cpp │ │ │ │ ├── CameraSensorInfo.h │ │ │ │ ├── ColorFilterArray.cpp │ │ │ │ └── ColorFilterArray.h │ │ │ ├── parsers │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── CiffParser.cpp │ │ │ │ ├── CiffParser.h │ │ │ │ ├── CiffParserException.h │ │ │ │ ├── FiffParser.cpp │ │ │ │ ├── FiffParser.h │ │ │ │ ├── FiffParserException.h │ │ │ │ ├── RawParser.cpp │ │ │ │ ├── RawParser.h │ │ │ │ ├── RawParserException.h │ │ │ │ ├── TiffParser.cpp │ │ │ │ ├── TiffParser.h │ │ │ │ └── TiffParserException.h │ │ │ └── tiff │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── CiffEntry.cpp │ │ │ │ ├── CiffEntry.h │ │ │ │ ├── CiffIFD.cpp │ │ │ │ ├── CiffIFD.h │ │ │ │ ├── CiffTag.h │ │ │ │ ├── TiffEntry.cpp │ │ │ │ ├── TiffEntry.h │ │ │ │ ├── TiffIFD.cpp │ │ │ │ ├── TiffIFD.h │ │ │ │ └── TiffTag.h │ │ └── utilities │ │ │ ├── CMakeLists.txt │ │ │ ├── identify │ │ │ ├── CMakeLists.txt │ │ │ └── rawspeed-identify.cpp │ │ │ ├── rsbench │ │ │ ├── CMakeLists.txt │ │ │ └── main.cpp │ │ │ └── rstest │ │ │ ├── CMakeLists.txt │ │ │ ├── MD5Benchmark.cpp │ │ │ ├── MD5Test.cpp │ │ │ ├── md5.cpp │ │ │ ├── md5.h │ │ │ └── rstest.cpp │ │ └── test │ │ ├── CMakeLists.txt │ │ └── librawspeed │ │ ├── CMakeLists.txt │ │ ├── common │ │ ├── CMakeLists.txt │ │ ├── ChecksumFileTest.cpp │ │ ├── CommonTest.cpp │ │ ├── CpuidTest.cpp │ │ ├── MemoryTest.cpp │ │ ├── NORangesSetTest.cpp │ │ ├── PointTest.cpp │ │ ├── RangeTest.cpp │ │ ├── RangeTest.h │ │ └── SplineTest.cpp │ │ ├── decompressors │ │ ├── AbstractHuffmanTableTest.cpp │ │ ├── BinaryHuffmanTreeTest.cpp │ │ ├── CMakeLists.txt │ │ └── HuffmanTableTest.cpp │ │ ├── io │ │ ├── BitPumpJPEGTest.cpp │ │ ├── BitPumpLSBTest.cpp │ │ ├── BitPumpMSB16Test.cpp │ │ ├── BitPumpMSB32Test.cpp │ │ ├── BitPumpMSBTest.cpp │ │ ├── BitPumpTest.h │ │ ├── CMakeLists.txt │ │ ├── EndiannessTest.cpp │ │ └── EndiannessTest.h │ │ ├── metadata │ │ ├── BlackAreaTest.cpp │ │ ├── CMakeLists.txt │ │ ├── CameraMetaDataTest.cpp │ │ ├── CameraSensorInfoTest.cpp │ │ ├── CameraTest.cpp │ │ └── ColorFilterArrayTest.cpp │ │ └── test │ │ ├── CMakeLists.txt │ │ ├── ExceptionsTest.cpp │ │ └── RawSpeed.cpp ├── gui │ ├── doublebuffer.cc │ ├── doublebuffer.hh │ ├── exportdialog.cc │ ├── exportdialog.hh │ ├── help.cc │ ├── help.hh │ ├── histogram.cc │ ├── histogram.hh │ ├── image_info.cc │ ├── image_info.hh │ ├── imagearea.cc │ ├── imagearea.hh │ ├── imageeditor.cc │ ├── imageeditor.hh │ ├── layertree.cc │ ├── layertree.hh │ ├── layertree_dnd.cc │ ├── layerwidget.cc │ ├── layerwidget.hh │ ├── mainwindow.cc │ ├── mainwindow.hh │ ├── operation_config_gui.cc │ ├── operation_config_gui.hh │ ├── operations │ │ ├── OCIO │ │ │ ├── ocio_aces_config.cc │ │ │ ├── ocio_aces_config.hh │ │ │ ├── ocio_config_config.cc │ │ │ ├── ocio_config_config.hh │ │ │ ├── ocio_filmic_config.cc │ │ │ └── ocio_filmic_config.hh │ │ ├── basic_adjustments_config.cc │ │ ├── basic_adjustments_config.hh │ │ ├── blur_bilateral_config.cc │ │ ├── blur_bilateral_config.hh │ │ ├── channel_mixer_config.cc │ │ ├── channel_mixer_config.hh │ │ ├── clip_config.cc │ │ ├── clip_config.hh │ │ ├── clone_config.cc │ │ ├── clone_config.hh │ │ ├── clone_stamp_config.cc │ │ ├── clone_stamp_config.hh │ │ ├── color_correction_config.cc │ │ ├── color_correction_config.hh │ │ ├── convert_colorspace_config.cc │ │ ├── convert_colorspace_config.hh │ │ ├── crop_config.cc │ │ ├── crop_config.hh │ │ ├── curves_config.cc │ │ ├── curves_config.hh │ │ ├── defringe_config.cc │ │ ├── defringe_config.hh │ │ ├── denoise_config.cc │ │ ├── denoise_config.hh │ │ ├── desaturate_config.cc │ │ ├── desaturate_config.hh │ │ ├── draw_config.cc │ │ ├── draw_config.hh │ │ ├── dynamic_range_compressor_config.cc │ │ ├── dynamic_range_compressor_config.hh │ │ ├── dynamic_range_compressor_config_v2.cc │ │ ├── dynamic_range_compressor_config_v2.hh │ │ ├── gaussblur_config.cc │ │ ├── gaussblur_config.hh │ │ ├── gmic │ │ │ ├── blur_bilateral_config.cc │ │ │ ├── blur_bilateral_config.hh │ │ │ ├── configs.hh │ │ │ ├── convolve_config.cc │ │ │ ├── convolve_config.hh │ │ │ ├── emulate_film_bw_config.cc │ │ │ ├── emulate_film_bw_config.hh │ │ │ ├── emulate_film_colorslide_config.cc │ │ │ ├── emulate_film_colorslide_config.hh │ │ │ ├── emulate_film_instant_consumer_config.cc │ │ │ ├── emulate_film_instant_consumer_config.hh │ │ │ ├── emulate_film_instant_pro_config.cc │ │ │ ├── emulate_film_instant_pro_config.hh │ │ │ ├── emulate_film_negative_color_config.cc │ │ │ ├── emulate_film_negative_color_config.hh │ │ │ ├── emulate_film_negative_new_config.cc │ │ │ ├── emulate_film_negative_new_config.hh │ │ │ ├── emulate_film_negative_old_config.cc │ │ │ ├── emulate_film_negative_old_config.hh │ │ │ ├── emulate_film_print_films_config.cc │ │ │ ├── emulate_film_print_films_config.hh │ │ │ ├── emulate_film_user_defined_config.cc │ │ │ ├── emulate_film_user_defined_config.hh │ │ │ ├── emulate_film_various_config.cc │ │ │ ├── emulate_film_various_config.hh │ │ │ ├── gmic_config.cc │ │ │ ├── gmic_config.hh │ │ │ ├── gradient_norm_config.cc │ │ │ ├── gradient_norm_config.hh │ │ │ ├── new_gmic_operation_config.cc │ │ │ ├── new_gmic_operation_config.hh │ │ │ ├── obsolete │ │ │ │ ├── denoise_config.hh │ │ │ │ ├── denoise_gmic_config.cc │ │ │ │ ├── dream_smooth_config.cc │ │ │ │ ├── dream_smooth_config.hh │ │ │ │ ├── extract_foreground_config.cc │ │ │ │ ├── extract_foreground_config.hh │ │ │ │ ├── gcd_despeckle_config.cc │ │ │ │ ├── gcd_despeckle_config.hh │ │ │ │ ├── iain_denoise_config.cc │ │ │ │ ├── iain_denoise_config.hh │ │ │ │ ├── inpaint_config.cc │ │ │ │ ├── inpaint_config.hh │ │ │ │ ├── smooth_diffusion_config.cc │ │ │ │ ├── smooth_diffusion_config.hh │ │ │ │ ├── smooth_guided_config.cc │ │ │ │ ├── smooth_guided_config.hh │ │ │ │ ├── smooth_mean_curvature_config.cc │ │ │ │ ├── smooth_mean_curvature_config.hh │ │ │ │ ├── smooth_median_config.cc │ │ │ │ ├── smooth_median_config.hh │ │ │ │ ├── smooth_nlmeans_config.cc │ │ │ │ ├── smooth_nlmeans_config.hh │ │ │ │ ├── smooth_selective_gaussian_config.cc │ │ │ │ ├── smooth_selective_gaussian_config.hh │ │ │ │ ├── smooth_total_variation_config.cc │ │ │ │ ├── smooth_total_variation_config.hh │ │ │ │ ├── smooth_wavelets_haar_config.cc │ │ │ │ ├── smooth_wavelets_haar_config.hh │ │ │ │ ├── split_details_config.cc │ │ │ │ ├── split_details_config.hh │ │ │ │ ├── watermark_fourier_config.cc │ │ │ │ └── watermark_fourier_config.hh │ │ │ ├── sharpen_rl_config.cc │ │ │ ├── sharpen_rl_config.hh │ │ │ ├── smooth_anisotropic_config.cc │ │ │ ├── smooth_anisotropic_config.hh │ │ │ ├── smooth_nlmeans_config.cc │ │ │ ├── smooth_nlmeans_config.hh │ │ │ ├── tone_mapping_config.cc │ │ │ ├── tone_mapping_config.hh │ │ │ ├── transfer_colors_config.cc │ │ │ └── transfer_colors_config.hh │ │ ├── gradient_config.cc │ │ ├── gradient_config.hh │ │ ├── guided_filter_config.cc │ │ ├── guided_filter_config.hh │ │ ├── hsl_mask_config.cc │ │ ├── hsl_mask_config.hh │ │ ├── imageread_config.cc │ │ ├── imageread_config.hh │ │ ├── lensfun_config.cc │ │ ├── lensfun_config.hh │ │ ├── levels_config.cc │ │ ├── levels_config.hh │ │ ├── local_contrast_config.cc │ │ ├── local_contrast_config.hh │ │ ├── local_contrast_config_v2.cc │ │ ├── local_contrast_config_v2.hh │ │ ├── noise_generator_config.hh │ │ ├── path_mask_config.cc │ │ ├── path_mask_config.hh │ │ ├── perspective_config.cc │ │ ├── perspective_config.hh │ │ ├── raw_developer_config.cc │ │ ├── raw_developer_config.hh │ │ ├── raw_loader_config.cc │ │ ├── raw_loader_config.hh │ │ ├── relight_config.cc │ │ ├── relight_config.hh │ │ ├── scale_config.cc │ │ ├── scale_config.hh │ │ ├── shadows_highlights_config.cc │ │ ├── shadows_highlights_config.hh │ │ ├── shadows_highlights_config_v2.cc │ │ ├── shadows_highlights_config_v2.hh │ │ ├── sharpen_config.cc │ │ ├── sharpen_config.hh │ │ ├── split_details_config.cc │ │ ├── split_details_config.hh │ │ ├── threshold_config.cc │ │ ├── threshold_config.hh │ │ ├── tone_mapping_config.cc │ │ ├── tone_mapping_config.hh │ │ ├── tone_mapping_config_v2.cc │ │ ├── tone_mapping_config_v2.hh │ │ ├── tone_mapping_config_v3.cc │ │ ├── tone_mapping_config_v3.hh │ │ ├── uniform_config.cc │ │ ├── uniform_config.hh │ │ ├── unsharp_mask_config.cc │ │ ├── unsharp_mask_config.hh │ │ ├── vips_operation_config.cc │ │ ├── vips_operation_config.hh │ │ ├── volume_config.cc │ │ ├── volume_config.hh │ │ ├── wavdec_config.cc │ │ ├── wavdec_config.hh │ │ ├── white_balance_config.cc │ │ └── white_balance_config.hh │ ├── operationstree.cc │ ├── operationstree.hh │ ├── raw_histogram.cc │ ├── raw_histogram.hh │ ├── sampler.cc │ ├── sampler.hh │ ├── settingsdialog.cc │ ├── settingsdialog.hh │ ├── snapshotswidget.cc │ ├── snapshotswidget.hh │ ├── softproofdialog.cc │ ├── softproofdialog.hh │ ├── tablabelwidget.hh │ └── widgets │ │ ├── checkbox.cc │ │ ├── checkbox.hh │ │ ├── curveeditor.cc │ │ ├── curveeditor.hh │ │ ├── exposure_slider.cc │ │ ├── exposure_slider.hh │ │ ├── imagebutton.cc │ │ ├── imagebutton.hh │ │ ├── layerlist.cc │ │ ├── layerlist.hh │ │ ├── lensfun_selector.cc │ │ ├── lensfun_selector.hh │ │ ├── numentry.cc │ │ ├── numentry.hh │ │ ├── outmode_slider.cc │ │ ├── outmode_slider.hh │ │ ├── percent_selector.cc │ │ ├── percent_selector.hh │ │ ├── pfwidget.cc │ │ ├── pfwidget.hh │ │ ├── selector.cc │ │ ├── selector.hh │ │ ├── slider.cc │ │ ├── slider.hh │ │ ├── statusindicator.cc │ │ ├── statusindicator.hh │ │ ├── textbox.cc │ │ ├── textbox.hh │ │ ├── toolbutton.cc │ │ ├── toolbutton.hh │ │ ├── vslider.cc │ │ └── vslider.hh ├── legacy │ ├── gui │ │ └── operations │ │ │ ├── brightness_contrast_config.cc │ │ │ ├── brightness_contrast_config.hh │ │ │ ├── hue_saturation_config.cc │ │ │ ├── hue_saturation_config.hh │ │ │ ├── raw_developer_config.cc │ │ │ └── raw_developer_config.hh │ └── operations │ │ ├── brightness_contrast.cc │ │ ├── brightness_contrast.hh │ │ ├── brightness_contrast_par.hh │ │ ├── brightness_contrast_proc.hh │ │ ├── brightness_contrast_proc_grey.hh │ │ ├── brightness_contrast_proc_lab.hh │ │ ├── brightness_contrast_proc_rgb.hh │ │ ├── hue_saturation.cc │ │ ├── hue_saturation.hh │ │ ├── operations.cc │ │ ├── raw_developer.cc │ │ ├── raw_developer.hh │ │ ├── raw_output.cc │ │ ├── raw_output.hh │ │ ├── raw_preprocessor.cc │ │ └── raw_preprocessor.hh ├── main.cc ├── operations │ ├── CTMF │ │ ├── ctmf.c │ │ └── ctmf.h │ ├── Filmic │ │ ├── Core │ │ │ ├── CoreHelpers.cpp │ │ │ ├── CoreHelpers.h │ │ │ └── Mat33.inl │ │ ├── FilmicCurve │ │ │ ├── FilmicToneCurve.cpp │ │ │ └── FilmicToneCurve.h │ │ ├── LICENSE.txt │ │ └── README.md │ ├── OCIO │ │ ├── ocio_aces.cc │ │ ├── ocio_aces.hh │ │ ├── ocio_config.cc │ │ ├── ocio_config.hh │ │ ├── ocio_filmic.cc │ │ └── ocio_filmic.hh │ ├── amaze_demosaic.cc │ ├── amaze_demosaic.hh │ ├── basic_adjustments.cc │ ├── basic_adjustments.hh │ ├── blender.cc │ ├── blender.hh │ ├── blur_bilateral.cc │ ├── blur_bilateral.hh │ ├── blur_bilateral_blur.hh │ ├── blur_bilateral_slice.hh │ ├── blur_bilateral_slow.cc │ ├── blur_bilateral_slow.hh │ ├── blur_bilateral_splat.hh │ ├── buffer.cc │ ├── buffer.hh │ ├── ca_correct.cc │ ├── ca_correct.hh │ ├── channel_mixer.cc │ ├── channel_mixer.hh │ ├── clahe.cc │ ├── clahe.hh │ ├── clip.cc │ ├── clip.hh │ ├── clipping_warning.cc │ ├── clipping_warning.hh │ ├── clone.cc │ ├── clone.hh │ ├── clone_stamp.cc │ ├── clone_stamp.hh │ ├── color_correction.cc │ ├── color_correction.hh │ ├── convert_colorspace.cc │ ├── convert_colorspace.hh │ ├── convertformat.cc │ ├── convertformat.hh │ ├── crop.cc │ ├── crop.hh │ ├── curves.cc │ ├── curves.hh │ ├── curves_rgb.hh │ ├── defringe.cc │ ├── defringe.hh │ ├── demosaic_common.cc │ ├── demosaic_common.hh │ ├── denoise.cc │ ├── denoise.hh │ ├── desaturate.cc │ ├── desaturate.hh │ ├── desaturate_average.hh │ ├── desaturate_lightness.hh │ ├── desaturate_luminance.cc │ ├── desaturate_luminance.hh │ ├── desaturate_luminosity.hh │ ├── draw.cc │ ├── draw.hh │ ├── dynamic_range_compressor.cc │ ├── dynamic_range_compressor.hh │ ├── dynamic_range_compressor_v2.cc │ ├── dynamic_range_compressor_v2.hh │ ├── enhanced_usm.cc │ ├── enhanced_usm.hh │ ├── false_color_correction.cc │ ├── false_color_correction.hh │ ├── fast_demosaic.cc │ ├── fast_demosaic.hh │ ├── fast_demosaic_algo.cc │ ├── fast_demosaic_xtrans.cc │ ├── fast_demosaic_xtrans.hh │ ├── gaussblur.cc │ ├── gaussblur.hh │ ├── gaussblur_sii.cc │ ├── gaussblur_sii.hh │ ├── gaussian_conv_sii.cc │ ├── gaussian_conv_sii.hh │ ├── gaussian_conv_sii_imp.hh │ ├── gmic │ │ ├── blur_bilateral.cc │ │ ├── blur_bilateral.hh │ │ ├── convolve.cc │ │ ├── convolve.hh │ │ ├── emulate_film.cc │ │ ├── emulate_film.hh │ │ ├── emulate_film_user_defined.cc │ │ ├── emulate_film_user_defined.hh │ │ ├── gmic.cc │ │ ├── gmic.hh │ │ ├── gmic_untiled_op.cc │ │ ├── gmic_untiled_op.hh │ │ ├── gradient_norm.cc │ │ ├── gradient_norm.hh │ │ ├── new_gmic_operation.cc │ │ ├── obsolete │ │ │ ├── denoise.hh │ │ │ ├── denoise_gmic.cc │ │ │ ├── dream_smooth.cc │ │ │ ├── dream_smooth.hh │ │ │ ├── emulate_film_bw.cc_.cc │ │ │ ├── emulate_film_bw.hh_.hh │ │ │ ├── emulate_film_colorslide.cc.copy │ │ │ ├── emulate_film_colorslide.cc_.cc │ │ │ ├── emulate_film_colorslide.hh_.hh │ │ │ ├── emulate_film_instant_consumer.cc_.cc │ │ │ ├── emulate_film_instant_consumer.hh_.hh │ │ │ ├── emulate_film_instant_pro.cc_.cc │ │ │ ├── emulate_film_instant_pro.hh_.hh │ │ │ ├── emulate_film_negative_color.cc_.cc │ │ │ ├── emulate_film_negative_color.hh_.hh │ │ │ ├── emulate_film_negative_new.cc_.cc │ │ │ ├── emulate_film_negative_new.hh_.hh │ │ │ ├── emulate_film_negative_old.cc_.cc │ │ │ ├── emulate_film_negative_old.hh_.hh │ │ │ ├── emulate_film_print_films.cc_.cc │ │ │ ├── emulate_film_print_films.hh_.hh │ │ │ ├── emulate_film_various.cc_.cc │ │ │ ├── emulate_film_various.hh_.hh │ │ │ ├── extract_foreground.cc │ │ │ ├── extract_foreground.hh │ │ │ ├── gcd_despeckle.cc │ │ │ ├── gcd_despeckle.hh │ │ │ ├── iain_denoise.cc │ │ │ ├── iain_denoise.hh │ │ │ ├── inpaint.cc │ │ │ ├── inpaint.hh │ │ │ ├── smooth_diffusion.cc │ │ │ ├── smooth_diffusion.hh │ │ │ ├── smooth_guided.cc │ │ │ ├── smooth_guided.hh │ │ │ ├── smooth_mean_curvature.cc │ │ │ ├── smooth_mean_curvature.hh │ │ │ ├── smooth_median.cc │ │ │ ├── smooth_median.hh │ │ │ ├── smooth_nlmeans.cc │ │ │ ├── smooth_nlmeans.hh │ │ │ ├── smooth_selective_gaussian.cc │ │ │ ├── smooth_selective_gaussian.hh │ │ │ ├── smooth_total_variation.cc │ │ │ ├── smooth_total_variation.hh │ │ │ ├── smooth_wavelets_haar.cc │ │ │ ├── smooth_wavelets_haar.hh │ │ │ ├── split_details.cc │ │ │ ├── split_details.hh │ │ │ ├── watermark_fourier.cc │ │ │ └── watermark_fourier.hh │ │ ├── operations.hh │ │ ├── sharpen_rl.cc │ │ ├── sharpen_rl.hh │ │ ├── sharpen_texture.cc │ │ ├── sharpen_texture.hh │ │ ├── smooth_anisotropic.cc │ │ ├── smooth_anisotropic.hh │ │ ├── tone_mapping.cc │ │ ├── tone_mapping.hh │ │ ├── transfer_colors.cc │ │ └── transfer_colors.hh │ ├── gradient.cc │ ├── gradient.hh │ ├── guided_filter.cc │ ├── guided_filter.hh │ ├── hotpixels.cc │ ├── hotpixels.hh │ ├── hsl_mask.cc │ ├── hsl_mask.hh │ ├── icc_transform.cc │ ├── icc_transform.hh │ ├── igv_demosaic.cc │ ├── igv_demosaic.hh │ ├── image_reader.cc │ ├── image_reader.hh │ ├── image_to_map.cc │ ├── image_to_map.hh │ ├── impulse_nr.cc │ ├── impulse_nr.hh │ ├── invert.cc │ ├── invert.hh │ ├── lensfun.cc │ ├── lensfun.hh │ ├── levels.cc │ ├── levels.hh │ ├── lmmse_demosaic.cc │ ├── lmmse_demosaic.hh │ ├── local_contrast.cc │ ├── local_contrast.hh │ ├── local_contrast_v2.cc │ ├── local_contrast_v2.hh │ ├── maxrgb.cc │ ├── maxrgb.hh │ ├── median_filter.cc │ ├── median_filter.hh │ ├── multiraw_developer.cc │ ├── multiraw_developer.hh │ ├── nlmeans.cc │ ├── nlmeans.hh │ ├── no_demosaic.cc │ ├── no_demosaic.hh │ ├── noise_generator.hh │ ├── operations.cc │ ├── operations.hh │ ├── padded_op.cc │ ├── padded_op.hh │ ├── path_mask.cc │ ├── path_mask.hh │ ├── perspective.cc │ ├── perspective.hh │ ├── raster_image.cc │ ├── raster_image.hh │ ├── raw_developer.cc │ ├── raw_developer.hh │ ├── raw_hl_reco.cc │ ├── raw_hl_reco.hh │ ├── raw_image.cc │ ├── raw_image.hh │ ├── raw_loader.cc │ ├── raw_loader.hh │ ├── raw_output.cc │ ├── raw_output.hh │ ├── raw_preprocessor.cc │ ├── raw_preprocessor.hh │ ├── rcd_demosaic.cc │ ├── rcd_demosaic.hh │ ├── relight.cc │ ├── relight.hh │ ├── scale.cc │ ├── scale.hh │ ├── shadows_highlights.cc │ ├── shadows_highlights.hh │ ├── shadows_highlights_v2.cc │ ├── shadows_highlights_v2.hh │ ├── sharpen.cc │ ├── sharpen.hh │ ├── split_details.cc │ ├── split_details.hh │ ├── subtr_image.cc │ ├── subtr_image.hh │ ├── threshold.cc │ ├── threshold.hh │ ├── tone_mapping.cc │ ├── tone_mapping.hh │ ├── tone_mapping_v2.cc │ ├── tone_mapping_v2.hh │ ├── tone_mapping_v3.cc │ ├── tone_mapping_v3.hh │ ├── trcconv.cc │ ├── trcconv.hh │ ├── uniform.cc │ ├── uniform.hh │ ├── unsharp_mask.cc │ ├── unsharp_mask.hh │ ├── untiled_op.cc │ ├── untiled_op.hh │ ├── vips_operation.cc │ ├── vips_operation.hh │ ├── volume.cc │ ├── volume.hh │ ├── wavdec.cc │ ├── wavdec.hh │ ├── white_balance.cc │ ├── white_balance.hh │ ├── xtrans_demosaic.cc │ └── xtrans_demosaic.hh ├── pfbatch.cc ├── phf_stack.cc ├── plugin │ ├── pluginwindow.cc │ └── pluginwindow.hh ├── rt │ ├── rtengine │ │ ├── CA_correct_RT.cc │ │ ├── CA_correct_RT_old.cc │ │ ├── LUT.h │ │ ├── StopWatch.h │ │ ├── alignedbuffer.h │ │ ├── amaze_demosaic_RT.cc │ │ ├── array2D.h │ │ ├── boxblur.h │ │ ├── cJSON.c │ │ ├── cJSON.h │ │ ├── camconst.cc │ │ ├── camconst.h │ │ ├── camconst.json │ │ ├── canon_cr3_decoder.cc │ │ ├── color.cc │ │ ├── color.h │ │ ├── coord.cc │ │ ├── coord.h │ │ ├── curves.cc │ │ ├── curves.h │ │ ├── dcp.cc │ │ ├── dcp.h │ │ ├── dcraw.cc │ │ ├── dcraw.h │ │ ├── diagonalcurves.cc │ │ ├── flatcurves.cc │ │ ├── fujicompressed.cc │ │ ├── helperavx.h │ │ ├── helpersse2.h │ │ ├── iccmatrices.h │ │ ├── igv_demosaic_RT.cc │ │ ├── imagedata.cc │ │ ├── imagedata.h │ │ ├── imageformat.h │ │ ├── imageio.h │ │ ├── iptcpairs.h │ │ ├── jpeg.h │ │ ├── jpeg_ijg │ │ │ ├── README │ │ │ └── jpeg_memsrc.cc │ │ ├── lj92.c │ │ ├── lj92.h │ │ ├── lmmse_demosaic_RT.cc │ │ ├── median.h │ │ ├── myfile.cc │ │ ├── myfile.h │ │ ├── mytime.h │ │ ├── noncopyable.h │ │ ├── opthelper.h │ │ ├── panasonic_decoders.cc │ │ ├── procparams.h │ │ ├── progresslistener.h │ │ ├── rawimage.cc │ │ ├── rawimage.h │ │ ├── rawimagesource.cc │ │ ├── rawimagesource.hh │ │ ├── rawmetadatalocation.h │ │ ├── rcd_demosaic_RT.cc │ │ ├── rescale.h │ │ ├── rt_math.h │ │ ├── rtengine.h │ │ ├── rtlensfun.cc │ │ ├── rtlensfun.h │ │ ├── safekeyfile.h │ │ ├── settings.cc │ │ ├── settings.h │ │ ├── sleef.c │ │ ├── sleef.h │ │ ├── sleefsseavx.c │ │ ├── sleefsseavx.h │ │ ├── utils.cc │ │ ├── utils.h │ │ └── xtrans_demosaic_RT.cc │ └── rtexif │ │ ├── CMakeLists.txt │ │ ├── canonattribs.cc │ │ ├── fujiattribs.cc │ │ ├── kodakattribs.cc │ │ ├── nikonattribs.cc │ │ ├── olympusattribs.cc │ │ ├── panasonicattribs.cc │ │ ├── pentaxattribs.cc │ │ ├── rtexif.cc │ │ ├── rtexif.h │ │ ├── sonyminoltaattribs.cc │ │ └── stdattribs.cc ├── tests │ ├── CMakeLists.txt │ ├── cast.c │ ├── draw.cc │ ├── draw2.cc │ ├── gmic.cc │ ├── gmic_test.cc │ ├── gmic_test.cpp │ ├── gtkdisp2.cc │ ├── icc.c │ ├── local_laplacian_filters.cc │ ├── rawsave.c │ ├── refcount.cc │ ├── scrollwin.cc │ ├── unprocessed_raw.cc │ └── vector.cc ├── version.cc ├── version.hh └── vips │ ├── clone_stamp.cc │ ├── gmic │ ├── generate │ │ ├── blur.conf │ │ ├── convolve.conf │ │ ├── denoise.conf │ │ ├── emulate_film_bw.conf │ │ ├── emulate_film_colorslide.conf │ │ ├── emulate_film_instant_consumer.conf │ │ ├── emulate_film_instant_pro.conf │ │ ├── emulate_film_negative_color.conf │ │ ├── emulate_film_negative_new.conf │ │ ├── emulate_film_negative_old.conf │ │ ├── emulate_film_print_films.conf │ │ ├── emulate_film_various.conf │ │ ├── filters.txt │ │ ├── gcd_despeckle.conf │ │ ├── gen_op.sh │ │ ├── gradient_norm.conf │ │ ├── iain_denoise.conf │ │ ├── iain_fast_denoise.conf │ │ ├── op.cc │ │ ├── op.hh │ │ ├── op_config.cc │ │ ├── op_config.hh │ │ ├── par_proto.cpp │ │ ├── sharpen_rl.conf │ │ ├── smooth_anisotropic.conf │ │ ├── smooth_diffusion.conf │ │ ├── smooth_dream.conf │ │ ├── smooth_guided.conf │ │ ├── smooth_mean_curvature.conf │ │ ├── smooth_median.conf │ │ ├── smooth_selective_gaussian.conf │ │ ├── smooth_total_variation.conf │ │ ├── smooth_wavelets_haar.conf │ │ └── tone_mapping.conf │ ├── gmic │ │ ├── COPYING │ │ ├── README │ │ └── src │ │ │ ├── CImg.h │ │ │ ├── gmic.cpp │ │ │ ├── gmic.h │ │ │ ├── gmic_def.gmic │ │ │ ├── gmic_def.h │ │ │ └── gmic_stdlib.h │ └── vips_gmic.cpp │ ├── layer.cc │ ├── lensfun.cc │ ├── perspective.cc │ ├── sinkscreen_pf.c │ ├── tilecache_pf.c │ └── vips2openexr.cc ├── themes ├── COPYING ├── assets │ ├── arrow-down-insens.png │ ├── arrow-down-prelight.png │ ├── arrow-down-small-insens.png │ ├── arrow-down-small-prelight.png │ ├── arrow-down-small.png │ ├── arrow-down.png │ ├── arrow-left-insens.png │ ├── arrow-left-prelight.png │ ├── arrow-left.png │ ├── arrow-right-insens.png │ ├── arrow-right-prelight.png │ ├── arrow-right.png │ ├── arrow-up-insens.png │ ├── arrow-up-prelight.png │ ├── arrow-up-small-insens.png │ ├── arrow-up-small-prelight.png │ ├── arrow-up-small.png │ ├── arrow-up.png │ ├── border.png │ ├── button-active-hover.png │ ├── button-active.png │ ├── button-hover.png │ ├── button-insensitive.png │ ├── button.png │ ├── checkbox-checked-insensitive.png │ ├── checkbox-checked.png │ ├── checkbox-unchecked-insensitive.png │ ├── checkbox-unchecked.png │ ├── combo-entry-border-focus-rtl.png │ ├── combo-entry-border-focus.png │ ├── combo-entry-border-rtl.png │ ├── combo-entry-border.png │ ├── combo-entry-button-active-rtl.png │ ├── combo-entry-button-active.png │ ├── combo-entry-button-insensitive-rtl.png │ ├── combo-entry-button-insensitive.png │ ├── combo-entry-button-rtl.png │ ├── combo-entry-button.png │ ├── combo-entry-focus-notebook-rtl.png │ ├── combo-entry-focus-notebook.png │ ├── combo-entry-focus-rtl.png │ ├── combo-entry-focus.png │ ├── combo-entry-insensitive-notebook-rtl.png │ ├── combo-entry-insensitive-notebook.png │ ├── combo-entry-insensitive-rtl.png │ ├── combo-entry-insensitive.png │ ├── combo-entry-notebook-rtl.png │ ├── combo-entry-notebook.png │ ├── combo-entry-rtl.png │ ├── combo-entry.png │ ├── down-background-disable-rtl.png │ ├── down-background-disable.png │ ├── down-background-rtl.png │ ├── down-background.png │ ├── entry-active-bg.png │ ├── entry-active-notebook.png │ ├── entry-active-toolbar.png │ ├── entry-background-disabled.png │ ├── entry-background.png │ ├── entry-bg.png │ ├── entry-border-active-bg.png │ ├── entry-border-bg.png │ ├── entry-disabled-bg.png │ ├── entry-disabled-notebook.png │ ├── entry-disabled-toolbar.png │ ├── entry-notebook.png │ ├── entry-toolbar.png │ ├── focus-line.png │ ├── frame-gap-end.png │ ├── frame-gap-start.png │ ├── frame.png │ ├── handle-h.png │ ├── handle-v.png │ ├── inline-toolbar.png │ ├── line-h.png │ ├── line-v.png │ ├── menu-arrow-prelight.png │ ├── menu-arrow.png │ ├── menu-checkbox-checked-insensitive.png │ ├── menu-checkbox-checked.png │ ├── menu-checkbox-unchecked-insensitive.png │ ├── menu-checkbox-unchecked.png │ ├── menu-radio-checked-insensitive.png │ ├── menu-radio-checked.png │ ├── menu-radio-unchecked-insensitive.png │ ├── menu-radio-unchecked.png │ ├── menu-separator.png │ ├── menubar.png │ ├── menubar_button.png │ ├── menuitem.png │ ├── minus.png │ ├── notebook-gap-horiz.png │ ├── notebook-gap-vert.png │ ├── notebook.png │ ├── null.png │ ├── pathbar_button_active.png │ ├── pathbar_button_prelight.png │ ├── plus.png │ ├── progressbar.png │ ├── progressbar_v.png │ ├── radio-checked-insensitive.png │ ├── radio-checked.png │ ├── radio-unchecked-insensitive.png │ ├── radio-unchecked.png │ ├── slider-horiz-active.png │ ├── slider-horiz-insens.png │ ├── slider-horiz-prelight.png │ ├── slider-horiz.png │ ├── slider-insensitive.png │ ├── slider-prelight.png │ ├── slider-vert-active.png │ ├── slider-vert-insens.png │ ├── slider-vert-prelight.png │ ├── slider-vert.png │ ├── slider.png │ ├── tab-bottom-active.png │ ├── tab-left-active.png │ ├── tab-right-active.png │ ├── tab-top-active.png │ ├── toolbar-button-active-hover.png │ ├── toolbar-button-active.png │ ├── toolbar.png │ ├── tree_header.png │ ├── trough-horizontal-active.png │ ├── trough-horizontal.png │ ├── trough-progressbar.png │ ├── trough-progressbar_v.png │ ├── trough-scrollbar-horiz.png │ ├── trough-scrollbar-vert.png │ ├── trough-vertical-active.png │ ├── trough-vertical.png │ ├── up-background-disable-rtl.png │ ├── up-background-disable.png │ ├── up-background-rtl.png │ └── up-background.png ├── gtkrc ├── index.theme ├── main.rc └── photoflow-dark.gtkrc ├── themes_old ├── TooWaBlue-GTK3-20_.css ├── assets │ ├── checkbox-checked-insensitive.png │ ├── checkbox-checked-insensitive@2.png │ ├── checkbox-checked.png │ ├── checkbox-checked@2.png │ ├── checkbox-mixed-insensitive.png │ ├── checkbox-mixed-insensitive@2.png │ ├── checkbox-mixed.png │ ├── checkbox-mixed@2.png │ ├── checkbox-unchecked-insensitive.png │ ├── checkbox-unchecked-insensitive@2.png │ ├── checkbox-unchecked.png │ ├── checkbox-unchecked@2.png │ ├── scale-slider-hover.png │ ├── scale-slider-hover@2.png │ ├── scale-slider-insensitive.png │ ├── scale-slider-insensitive@2.png │ ├── scale-slider.png │ └── scale-slider@2.png ├── gtk-widgets-assets.css ├── images │ ├── svg │ │ └── twb │ │ │ ├── checkbox-checked-disabled.svg │ │ │ ├── checkbox-checked.svg │ │ │ ├── checkbox-inconsistent-disabled.svg │ │ │ ├── checkbox-inconsistent.svg │ │ │ ├── checkbox-unchecked-disabled.svg │ │ │ ├── checkbox-unchecked.svg │ │ │ ├── radio-checked-disabled.svg │ │ │ ├── radio-checked.svg │ │ │ ├── radio-inconsistent-disabled.svg │ │ │ ├── radio-inconsistent.svg │ │ │ ├── radio-unchecked-disabled.svg │ │ │ └── radio-unchecked.svg │ └── twb │ │ ├── checkbox-checked-disabled.png │ │ ├── checkbox-checked.png │ │ ├── checkbox-inconsistent-disabled.png │ │ ├── checkbox-inconsistent.png │ │ ├── checkbox-unchecked-disabled.png │ │ ├── checkbox-unchecked.png │ │ ├── radio-checked-disabled.png │ │ ├── radio-checked.png │ │ ├── radio-inconsistent-disabled.png │ │ ├── radio-inconsistent.png │ │ ├── radio-unchecked-disabled.png │ │ └── radio-unchecked.png ├── photoflow-dark-old.css ├── photoflow-dark-old.gtkrc ├── photoflow-dark.css ├── photoflow-dark.gtkrc └── ui │ ├── arrow-down-insens.png │ ├── arrow-down-prelight.png │ ├── arrow-down-small-insens.png │ ├── arrow-down-small-prelight.png │ ├── arrow-down-small.png │ ├── arrow-down.png │ ├── arrow-left-insens.png │ ├── arrow-left-prelight.png │ ├── arrow-left.png │ ├── arrow-right-insens.png │ ├── arrow-right-prelight.png │ ├── arrow-right.png │ ├── arrow-up-insens.png │ ├── arrow-up-prelight.png │ ├── arrow-up-small-insens.png │ ├── arrow-up-small-prelight.png │ ├── arrow-up-small.png │ ├── arrow-up.png │ ├── bar-h.png │ ├── bar-v.png │ ├── blue.png │ ├── button-default.png │ ├── button-insensitive.png │ ├── button-normal.png │ ├── button-prelight.png │ ├── button-pressed.png │ ├── check1.png │ ├── check2.png │ ├── check3.png │ ├── combo-entry-border-active-bg.png │ ├── combo-entry-border-active-notebook.png │ ├── combo-entry-border-active-rtl-notebook.png │ ├── combo-entry-border-bg.png │ ├── combo-entry-border-disabled-bg.png │ ├── combo-entry-border-disabled-notebook.png │ ├── combo-entry-border-disabled-rtl-bg.png │ ├── combo-entry-border-disabled-rtl-notebook.png │ ├── combo-entry-border-notebook.png │ ├── combo-entry-border-rtl-bg.png │ ├── combo-entry-border-rtl-notebook.png │ ├── combo-entry-button-active-rtl.png │ ├── combo-entry-button-active.png │ ├── combo-entry-button-disabled-rtl.png │ ├── combo-entry-button-disabled.png │ ├── combo-entry-button-rtl.png │ ├── combo-entry-button.png │ ├── down-pre.png │ ├── down.png │ ├── entry-border-active-bg.png │ ├── entry-border-active-notebook.png │ ├── entry-border-disabled-bg.png │ ├── entry-border-disabled-notebook.png │ ├── entry-border-fill-active.png │ ├── entry-border-fill.png │ ├── entry-border-notebook-null.png │ ├── entry-border-notebook.png │ ├── ext-bottom.png │ ├── ext-left.png │ ├── ext-right.png │ ├── ext-top.png │ ├── extension-bottom.png │ ├── extension-left.png │ ├── extension-right.png │ ├── extension-top.png │ ├── frame-gap-end.png │ ├── frame-gap-start.png │ ├── frame.png │ ├── gap_bottom.png │ ├── gap_left.png │ ├── gap_right.png │ ├── gap_top.png │ ├── gimp-arrow-down-insensitive.png │ ├── gimp-arrow-down-insenstive.png │ ├── gimp-arrow-down.png │ ├── gimp-arrow-left.png │ ├── gimp-arrow-right-dark.png │ ├── gimp-arrow-right.png │ ├── gimp-arrow-up.png │ ├── gimp-button-default.png │ ├── gimp-button-insensitive.png │ ├── gimp-button-normal.png │ ├── gimp-button-prelight.png │ ├── gimp-button-pressed.png │ ├── gimp-handle-h.png │ ├── gimp-handle-v.png │ ├── gimp-line-h.png │ ├── gimp-line-v.png │ ├── gimp-menu-line-h.png │ ├── gimp-tooltip-bg.png │ ├── list_header-pressed.png │ ├── list_header.png │ ├── menu-arrow-prelight.png │ ├── menu-arrow.png │ ├── menu.png │ ├── menubar.png │ ├── menuitem.png │ ├── minus.png │ ├── notebook.png │ ├── null.png │ ├── option1.png │ ├── option2.png │ ├── option3.png │ ├── plus.png │ ├── progressbar-trough.png │ ├── progressbar.png │ ├── shadow-in-alt.png │ ├── shadow-in.png │ ├── shadow-null.png │ ├── shadow-out.png │ ├── slider-h.png │ ├── slider-v.png │ ├── spin-down-insensitive.png │ ├── spin-down-normal.png │ ├── spin-down-pressed.png │ ├── spin-insensitive.png │ ├── spin-up-insensitive.png │ ├── spin-up-normal.png │ ├── spin-up-pressed.png │ ├── spin.png │ ├── toolbar.png │ └── transparent.png ├── tools ├── bump_version.sh ├── convert_gimp_curves ├── invert_icons.sh ├── pfconv ├── po_update.sh ├── update_darktable.sh ├── update_exiv2.sh ├── update_gmic.sh ├── update_lensfun.sh ├── update_libvips.sh └── update_version_info.sh └── win └── photoflow.rc /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/CHANGELOG -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/CREDITS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 0.2.8 2 | -------------------------------------------------------------------------------- /appimage/appimage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/appimage/appimage.sh -------------------------------------------------------------------------------- /appimage/excludelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/appimage/excludelist -------------------------------------------------------------------------------- /cmake/modules/CheckZLIB.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/cmake/modules/CheckZLIB.cmake -------------------------------------------------------------------------------- /cmake/modules/CodeCoverage.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/cmake/modules/CodeCoverage.cmake -------------------------------------------------------------------------------- /cmake/modules/CpuMarch.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/cmake/modules/CpuMarch.cmake -------------------------------------------------------------------------------- /cmake/modules/FindCppFilt.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/cmake/modules/FindCppFilt.cmake -------------------------------------------------------------------------------- /cmake/modules/FindDemangler.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/cmake/modules/FindDemangler.cmake -------------------------------------------------------------------------------- /cmake/modules/FindEXPAT.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/cmake/modules/FindEXPAT.cmake -------------------------------------------------------------------------------- /cmake/modules/FindExiv2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/cmake/modules/FindExiv2.cmake -------------------------------------------------------------------------------- /cmake/modules/FindFind.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/cmake/modules/FindFind.cmake -------------------------------------------------------------------------------- /cmake/modules/FindGCCAr.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/cmake/modules/FindGCCAr.cmake -------------------------------------------------------------------------------- /cmake/modules/FindGCCNm.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/cmake/modules/FindGCCNm.cmake -------------------------------------------------------------------------------- /cmake/modules/FindGCCRanLib.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/cmake/modules/FindGCCRanLib.cmake -------------------------------------------------------------------------------- /cmake/modules/FindGCov.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/cmake/modules/FindGCov.cmake -------------------------------------------------------------------------------- /cmake/modules/FindGLIB2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/cmake/modules/FindGLIB2.cmake -------------------------------------------------------------------------------- /cmake/modules/FindGenHtml.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/cmake/modules/FindGenHtml.cmake -------------------------------------------------------------------------------- /cmake/modules/FindGettext.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/cmake/modules/FindGettext.cmake -------------------------------------------------------------------------------- /cmake/modules/FindIconv.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/cmake/modules/FindIconv.cmake -------------------------------------------------------------------------------- /cmake/modules/FindLCov.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/cmake/modules/FindLCov.cmake -------------------------------------------------------------------------------- /cmake/modules/FindLLVMAr.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/cmake/modules/FindLLVMAr.cmake -------------------------------------------------------------------------------- /cmake/modules/FindLLVMCXXFilt.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/cmake/modules/FindLLVMCXXFilt.cmake -------------------------------------------------------------------------------- /cmake/modules/FindLLVMCov.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/cmake/modules/FindLLVMCov.cmake -------------------------------------------------------------------------------- /cmake/modules/FindLLVMLLD.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/cmake/modules/FindLLVMLLD.cmake -------------------------------------------------------------------------------- /cmake/modules/FindLLVMNm.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/cmake/modules/FindLLVMNm.cmake -------------------------------------------------------------------------------- /cmake/modules/FindLLVMObjCopy.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/cmake/modules/FindLLVMObjCopy.cmake -------------------------------------------------------------------------------- /cmake/modules/FindLLVMObjDump.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/cmake/modules/FindLLVMObjDump.cmake -------------------------------------------------------------------------------- /cmake/modules/FindLLVMRanLib.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/cmake/modules/FindLLVMRanLib.cmake -------------------------------------------------------------------------------- /cmake/modules/FindMsgfmt.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/cmake/modules/FindMsgfmt.cmake -------------------------------------------------------------------------------- /cmake/modules/FindOpenColorIO.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/cmake/modules/FindOpenColorIO.cmake -------------------------------------------------------------------------------- /cmake/modules/FindPugixml.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/cmake/modules/FindPugixml.cmake -------------------------------------------------------------------------------- /cmake/modules/FindSphinx.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/cmake/modules/FindSphinx.cmake -------------------------------------------------------------------------------- /cmake/modules/FindXMLLINT.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/cmake/modules/FindXMLLINT.cmake -------------------------------------------------------------------------------- /cmake/modules/GCOV.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/cmake/modules/GCOV.cmake -------------------------------------------------------------------------------- /cmake/modules/GTEST_ADD_TESTS.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/cmake/modules/GTEST_ADD_TESTS.cmake -------------------------------------------------------------------------------- /cmake/modules/GoogleBenchmark.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/cmake/modules/GoogleBenchmark.cmake -------------------------------------------------------------------------------- /cmake/modules/GoogleTest.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/cmake/modules/GoogleTest.cmake -------------------------------------------------------------------------------- /cmake/modules/GoogleTest.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/cmake/modules/GoogleTest.cmake.in -------------------------------------------------------------------------------- /cmake/modules/LLVMOpenMP.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/cmake/modules/LLVMOpenMP.cmake -------------------------------------------------------------------------------- /cmake/modules/LibFindMacros.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/cmake/modules/LibFindMacros.cmake -------------------------------------------------------------------------------- /cmake/modules/Pugixml.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/cmake/modules/Pugixml.cmake -------------------------------------------------------------------------------- /cmake/modules/Zlib.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/cmake/modules/Zlib.cmake -------------------------------------------------------------------------------- /cmake/modules/run-xmllint.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/cmake/modules/run-xmllint.cmake -------------------------------------------------------------------------------- /cmake/modules/thread-local.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/cmake/modules/thread-local.cmake -------------------------------------------------------------------------------- /data/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/data/CMakeLists.txt -------------------------------------------------------------------------------- /data/gmic_film_cluts.gmz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/data/gmic_film_cluts.gmz -------------------------------------------------------------------------------- /data/mime/x-pfi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/data/mime/x-pfi.xml -------------------------------------------------------------------------------- /data/photoflow.appdata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/data/photoflow.appdata.xml -------------------------------------------------------------------------------- /data/photoflow.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/data/photoflow.desktop -------------------------------------------------------------------------------- /data/pixmaps/128x128/photoflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/data/pixmaps/128x128/photoflow.png -------------------------------------------------------------------------------- /data/pixmaps/16x16/photoflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/data/pixmaps/16x16/photoflow.png -------------------------------------------------------------------------------- /data/pixmaps/22x22/photoflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/data/pixmaps/22x22/photoflow.png -------------------------------------------------------------------------------- /data/pixmaps/24x24/photoflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/data/pixmaps/24x24/photoflow.png -------------------------------------------------------------------------------- /data/pixmaps/256x256/photoflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/data/pixmaps/256x256/photoflow.png -------------------------------------------------------------------------------- /data/pixmaps/32x32/photoflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/data/pixmaps/32x32/photoflow.png -------------------------------------------------------------------------------- /data/pixmaps/48x48/photoflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/data/pixmaps/48x48/photoflow.png -------------------------------------------------------------------------------- /data/pixmaps/64x64/photoflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/data/pixmaps/64x64/photoflow.png -------------------------------------------------------------------------------- /data/pixmaps/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/data/pixmaps/CMakeLists.txt -------------------------------------------------------------------------------- /data/pixmaps/phf_logo_128x128.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/data/pixmaps/phf_logo_128x128.ico -------------------------------------------------------------------------------- /data/pixmaps/photoflow_ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/data/pixmaps/photoflow_ui.png -------------------------------------------------------------------------------- /data/pixmaps/scalable/photoflow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/data/pixmaps/scalable/photoflow.svg -------------------------------------------------------------------------------- /help/en/clone_stamp.hlp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/help/en/clone_stamp.hlp -------------------------------------------------------------------------------- /help/en/curves.hlp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/help/en/curves.hlp -------------------------------------------------------------------------------- /help/en/curves.hlp~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/help/en/curves.hlp~ -------------------------------------------------------------------------------- /help/en/raw_developer.hlp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/help/en/raw_developer.hlp -------------------------------------------------------------------------------- /icc/ACES-elle-V4-g10.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icc/ACES-elle-V4-g10.icc -------------------------------------------------------------------------------- /icc/ACES-elle-V4-labl.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icc/ACES-elle-V4-labl.icc -------------------------------------------------------------------------------- /icc/ACEScg-elle-V4-g10.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icc/ACEScg-elle-V4-g10.icc -------------------------------------------------------------------------------- /icc/ACEScg-elle-V4-g22.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icc/ACEScg-elle-V4-g22.icc -------------------------------------------------------------------------------- /icc/ACEScg-elle-V4-labl.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icc/ACEScg-elle-V4-labl.icc -------------------------------------------------------------------------------- /icc/ACEScg-elle-V4-srgbtrc.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icc/ACEScg-elle-V4-srgbtrc.icc -------------------------------------------------------------------------------- /icc/ClayRGB-elle-V4-g10.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icc/ClayRGB-elle-V4-g10.icc -------------------------------------------------------------------------------- /icc/ClayRGB-elle-V4-g22.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icc/ClayRGB-elle-V4-g22.icc -------------------------------------------------------------------------------- /icc/ClayRGB-elle-V4-labl.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icc/ClayRGB-elle-V4-labl.icc -------------------------------------------------------------------------------- /icc/ClayRGB-elle-V4-srgbtrc.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icc/ClayRGB-elle-V4-srgbtrc.icc -------------------------------------------------------------------------------- /icc/Lab-D50-Identity-elle-V4.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icc/Lab-D50-Identity-elle-V4.icc -------------------------------------------------------------------------------- /icc/LargeRGB-elle-V4-g10.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icc/LargeRGB-elle-V4-g10.icc -------------------------------------------------------------------------------- /icc/LargeRGB-elle-V4-g18.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icc/LargeRGB-elle-V4-g18.icc -------------------------------------------------------------------------------- /icc/LargeRGB-elle-V4-labl.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icc/LargeRGB-elle-V4-labl.icc -------------------------------------------------------------------------------- /icc/Rec2020-elle-V4-g10.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icc/Rec2020-elle-V4-g10.icc -------------------------------------------------------------------------------- /icc/Rec2020-elle-V4-labl.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icc/Rec2020-elle-V4-labl.icc -------------------------------------------------------------------------------- /icc/Rec2020-elle-V4-rec709.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icc/Rec2020-elle-V4-rec709.icc -------------------------------------------------------------------------------- /icc/WideRGB-elle-V4-g10.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icc/WideRGB-elle-V4-g10.icc -------------------------------------------------------------------------------- /icc/WideRGB-elle-V4-labl.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icc/WideRGB-elle-V4-labl.icc -------------------------------------------------------------------------------- /icc/XYZ-D50-Identity-elle-V4.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icc/XYZ-D50-Identity-elle-V4.icc -------------------------------------------------------------------------------- /icc/cmyk.icm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icc/cmyk.icm -------------------------------------------------------------------------------- /icc/gpl-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icc/gpl-2.0.txt -------------------------------------------------------------------------------- /icc/sRGB-elle-V2-srgbtrc.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icc/sRGB-elle-V2-srgbtrc.icc -------------------------------------------------------------------------------- /icc/sRGB-elle-V4-srgbtrc.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icc/sRGB-elle-V4-srgbtrc.icc -------------------------------------------------------------------------------- /icons-inverted/add-layer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons-inverted/add-layer.png -------------------------------------------------------------------------------- /icons-inverted/add-layer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons-inverted/add-layer.svg -------------------------------------------------------------------------------- /icons-inverted/close_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons-inverted/close_active.png -------------------------------------------------------------------------------- /icons-inverted/close_active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons-inverted/close_active.svg -------------------------------------------------------------------------------- /icons-inverted/close_doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons-inverted/close_doc.png -------------------------------------------------------------------------------- /icons-inverted/close_doc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons-inverted/close_doc.svg -------------------------------------------------------------------------------- /icons-inverted/collapse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons-inverted/collapse.png -------------------------------------------------------------------------------- /icons-inverted/collapse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons-inverted/collapse.svg -------------------------------------------------------------------------------- /icons-inverted/collapse_doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons-inverted/collapse_doc.png -------------------------------------------------------------------------------- /icons-inverted/collapse_doc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons-inverted/collapse_doc.svg -------------------------------------------------------------------------------- /icons-inverted/edit2_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons-inverted/edit2_active.png -------------------------------------------------------------------------------- /icons-inverted/edit2_active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons-inverted/edit2_active.svg -------------------------------------------------------------------------------- /icons-inverted/edit_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons-inverted/edit_active.png -------------------------------------------------------------------------------- /icons-inverted/edit_active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons-inverted/edit_active.svg -------------------------------------------------------------------------------- /icons-inverted/edit_doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons-inverted/edit_doc.png -------------------------------------------------------------------------------- /icons-inverted/edit_doc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons-inverted/edit_doc.svg -------------------------------------------------------------------------------- /icons-inverted/edit_doc_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons-inverted/edit_doc_light.png -------------------------------------------------------------------------------- /icons-inverted/edit_doc_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons-inverted/edit_doc_light.svg -------------------------------------------------------------------------------- /icons-inverted/edit_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons-inverted/edit_inactive.png -------------------------------------------------------------------------------- /icons-inverted/edit_inactive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons-inverted/edit_inactive.svg -------------------------------------------------------------------------------- /icons-inverted/expand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons-inverted/expand.png -------------------------------------------------------------------------------- /icons-inverted/expand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons-inverted/expand.svg -------------------------------------------------------------------------------- /icons-inverted/flash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons-inverted/flash.svg -------------------------------------------------------------------------------- /icons-inverted/gimp-layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons-inverted/gimp-layers.png -------------------------------------------------------------------------------- /icons-inverted/group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons-inverted/group.png -------------------------------------------------------------------------------- /icons-inverted/group.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons-inverted/group.svg -------------------------------------------------------------------------------- /icons-inverted/gtk-undo-ltr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons-inverted/gtk-undo-ltr.png -------------------------------------------------------------------------------- /icons-inverted/libre-chevron-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons-inverted/libre-chevron-up.svg -------------------------------------------------------------------------------- /icons-inverted/libre-file-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons-inverted/libre-file-image.png -------------------------------------------------------------------------------- /icons-inverted/libre-file-image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons-inverted/libre-file-image.svg -------------------------------------------------------------------------------- /icons-inverted/libre-floppy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons-inverted/libre-floppy.png -------------------------------------------------------------------------------- /icons-inverted/libre-floppy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons-inverted/libre-floppy.svg -------------------------------------------------------------------------------- /icons-inverted/libre-info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons-inverted/libre-info.png -------------------------------------------------------------------------------- /icons-inverted/libre-info.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons-inverted/libre-info.svg -------------------------------------------------------------------------------- /icons-inverted/libre-pencil.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons-inverted/libre-pencil.svg -------------------------------------------------------------------------------- /icons-inverted/libre-restore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons-inverted/libre-restore.png -------------------------------------------------------------------------------- /icons-inverted/libre-restore.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons-inverted/libre-restore.svg -------------------------------------------------------------------------------- /icons-inverted/libre-sign-out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons-inverted/libre-sign-out.png -------------------------------------------------------------------------------- /icons-inverted/libre-sign-out.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons-inverted/libre-sign-out.svg -------------------------------------------------------------------------------- /icons-inverted/libre-sliders.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons-inverted/libre-sliders.png -------------------------------------------------------------------------------- /icons-inverted/libre-sliders.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons-inverted/libre-sliders.svg -------------------------------------------------------------------------------- /icons-inverted/libre-zoom-fit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons-inverted/libre-zoom-fit.png -------------------------------------------------------------------------------- /icons-inverted/libre-zoom-fit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons-inverted/libre-zoom-fit.svg -------------------------------------------------------------------------------- /icons-inverted/libre-zoom-in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons-inverted/libre-zoom-in.png -------------------------------------------------------------------------------- /icons-inverted/libre-zoom-in.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons-inverted/libre-zoom-in.svg -------------------------------------------------------------------------------- /icons-inverted/libre-zoom-out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons-inverted/libre-zoom-out.png -------------------------------------------------------------------------------- /icons-inverted/libre-zoom-out.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons-inverted/libre-zoom-out.svg -------------------------------------------------------------------------------- /icons-inverted/mask_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons-inverted/mask_active.png -------------------------------------------------------------------------------- /icons-inverted/mask_active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons-inverted/mask_active.svg -------------------------------------------------------------------------------- /icons-inverted/mask_blend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons-inverted/mask_blend.png -------------------------------------------------------------------------------- /icons-inverted/mask_blend.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons-inverted/mask_blend.svg -------------------------------------------------------------------------------- /icons-inverted/mask_doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons-inverted/mask_doc.png -------------------------------------------------------------------------------- /icons-inverted/mask_doc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons-inverted/mask_doc.svg -------------------------------------------------------------------------------- /icons-inverted/mask_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons-inverted/mask_inactive.png -------------------------------------------------------------------------------- /icons-inverted/mask_inactive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons-inverted/mask_inactive.svg -------------------------------------------------------------------------------- /icons-inverted/path4162.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons-inverted/path4162.png -------------------------------------------------------------------------------- /icons-inverted/photoflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons-inverted/photoflow.png -------------------------------------------------------------------------------- /icons-inverted/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons-inverted/plus.png -------------------------------------------------------------------------------- /icons-inverted/plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons-inverted/plus.svg -------------------------------------------------------------------------------- /icons-inverted/presets_active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons-inverted/presets_active.svg -------------------------------------------------------------------------------- /icons-inverted/preview_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons-inverted/preview_active.png -------------------------------------------------------------------------------- /icons-inverted/preview_active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons-inverted/preview_active.svg -------------------------------------------------------------------------------- /icons-inverted/preview_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons-inverted/preview_inactive.png -------------------------------------------------------------------------------- /icons-inverted/preview_inactive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons-inverted/preview_inactive.svg -------------------------------------------------------------------------------- /icons-inverted/pushpin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons-inverted/pushpin.png -------------------------------------------------------------------------------- /icons-inverted/pushpin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons-inverted/pushpin.svg -------------------------------------------------------------------------------- /icons-inverted/pushpin_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons-inverted/pushpin_active.png -------------------------------------------------------------------------------- /icons-inverted/pushpin_active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons-inverted/pushpin_active.svg -------------------------------------------------------------------------------- /icons-inverted/pushpin_doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons-inverted/pushpin_doc.png -------------------------------------------------------------------------------- /icons-inverted/pushpin_doc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons-inverted/pushpin_doc.svg -------------------------------------------------------------------------------- /icons-inverted/pushpin_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons-inverted/pushpin_inactive.png -------------------------------------------------------------------------------- /icons-inverted/pushpin_inactive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons-inverted/pushpin_inactive.svg -------------------------------------------------------------------------------- /icons-inverted/redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons-inverted/redo.png -------------------------------------------------------------------------------- /icons-inverted/redo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons-inverted/redo.svg -------------------------------------------------------------------------------- /icons-inverted/redo_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons-inverted/redo_active.png -------------------------------------------------------------------------------- /icons-inverted/redo_active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons-inverted/redo_active.svg -------------------------------------------------------------------------------- /icons-inverted/redo_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons-inverted/redo_inactive.png -------------------------------------------------------------------------------- /icons-inverted/redo_inactive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons-inverted/redo_inactive.svg -------------------------------------------------------------------------------- /icons-inverted/reset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons-inverted/reset.png -------------------------------------------------------------------------------- /icons-inverted/reset.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons-inverted/reset.svg -------------------------------------------------------------------------------- /icons-inverted/reset_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons-inverted/reset_active.png -------------------------------------------------------------------------------- /icons-inverted/reset_active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons-inverted/reset_active.svg -------------------------------------------------------------------------------- /icons-inverted/reset_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons-inverted/reset_inactive.png -------------------------------------------------------------------------------- /icons-inverted/reset_inactive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons-inverted/reset_inactive.svg -------------------------------------------------------------------------------- /icons-inverted/save-as.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons-inverted/save-as.png -------------------------------------------------------------------------------- /icons-inverted/save-as.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons-inverted/save-as.svg -------------------------------------------------------------------------------- /icons-inverted/tools/clone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons-inverted/tools/clone.png -------------------------------------------------------------------------------- /icons-inverted/tools/crop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons-inverted/tools/crop.png -------------------------------------------------------------------------------- /icons-inverted/tools/curves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons-inverted/tools/curves.png -------------------------------------------------------------------------------- /icons-inverted/tools/curves.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons-inverted/tools/curves.svg -------------------------------------------------------------------------------- /icons-inverted/tools/desaturate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons-inverted/tools/desaturate.png -------------------------------------------------------------------------------- /icons-inverted/tools/draw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons-inverted/tools/draw.png -------------------------------------------------------------------------------- /icons-inverted/tools/flash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons-inverted/tools/flash.png -------------------------------------------------------------------------------- /icons-inverted/tools/gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons-inverted/tools/gradient.png -------------------------------------------------------------------------------- /icons-inverted/tools/image_load.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons-inverted/tools/image_load.png -------------------------------------------------------------------------------- /icons-inverted/tools/path-mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons-inverted/tools/path-mask.png -------------------------------------------------------------------------------- /icons-inverted/tools/scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons-inverted/tools/scale.png -------------------------------------------------------------------------------- /icons-inverted/trash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons-inverted/trash.png -------------------------------------------------------------------------------- /icons-inverted/trash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons-inverted/trash.svg -------------------------------------------------------------------------------- /icons-inverted/undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons-inverted/undo.png -------------------------------------------------------------------------------- /icons-inverted/undo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons-inverted/undo.svg -------------------------------------------------------------------------------- /icons-inverted/undo_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons-inverted/undo_active.png -------------------------------------------------------------------------------- /icons-inverted/undo_active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons-inverted/undo_active.svg -------------------------------------------------------------------------------- /icons-inverted/undo_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons-inverted/undo_inactive.png -------------------------------------------------------------------------------- /icons-inverted/undo_inactive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons-inverted/undo_inactive.svg -------------------------------------------------------------------------------- /icons-inverted/visible_doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons-inverted/visible_doc.png -------------------------------------------------------------------------------- /icons-inverted/visible_doc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons-inverted/visible_doc.svg -------------------------------------------------------------------------------- /icons/add-layer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons/add-layer.png -------------------------------------------------------------------------------- /icons/close_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons/close_active.png -------------------------------------------------------------------------------- /icons/close_doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons/close_doc.png -------------------------------------------------------------------------------- /icons/collapse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons/collapse.png -------------------------------------------------------------------------------- /icons/collapse_doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons/collapse_doc.png -------------------------------------------------------------------------------- /icons/edit2_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons/edit2_active.png -------------------------------------------------------------------------------- /icons/edit_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons/edit_active.png -------------------------------------------------------------------------------- /icons/edit_doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons/edit_doc.png -------------------------------------------------------------------------------- /icons/edit_doc_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons/edit_doc_light.png -------------------------------------------------------------------------------- /icons/edit_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons/edit_inactive.png -------------------------------------------------------------------------------- /icons/expand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons/expand.png -------------------------------------------------------------------------------- /icons/gimp-layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons/gimp-layers.png -------------------------------------------------------------------------------- /icons/group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons/group.png -------------------------------------------------------------------------------- /icons/gtk-undo-ltr-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons/gtk-undo-ltr-small.png -------------------------------------------------------------------------------- /icons/gtk-undo-ltr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons/gtk-undo-ltr.png -------------------------------------------------------------------------------- /icons/libre-camera-landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons/libre-camera-landscape.png -------------------------------------------------------------------------------- /icons/libre-chevron-up-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons/libre-chevron-up-small.png -------------------------------------------------------------------------------- /icons/libre-file-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons/libre-file-image.png -------------------------------------------------------------------------------- /icons/libre-floppy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons/libre-floppy.png -------------------------------------------------------------------------------- /icons/libre-folder-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons/libre-folder-open.png -------------------------------------------------------------------------------- /icons/libre-info-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons/libre-info-pressed.png -------------------------------------------------------------------------------- /icons/libre-info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons/libre-info.png -------------------------------------------------------------------------------- /icons/libre-restore-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons/libre-restore-pressed.png -------------------------------------------------------------------------------- /icons/libre-restore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons/libre-restore.png -------------------------------------------------------------------------------- /icons/libre-sign-out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons/libre-sign-out.png -------------------------------------------------------------------------------- /icons/libre-sliders.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons/libre-sliders.png -------------------------------------------------------------------------------- /icons/libre-zoom-fit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons/libre-zoom-fit.png -------------------------------------------------------------------------------- /icons/libre-zoom-in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons/libre-zoom-in.png -------------------------------------------------------------------------------- /icons/libre-zoom-out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons/libre-zoom-out.png -------------------------------------------------------------------------------- /icons/mask_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons/mask_active.png -------------------------------------------------------------------------------- /icons/mask_blend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons/mask_blend.png -------------------------------------------------------------------------------- /icons/mask_blend_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons/mask_blend_active.png -------------------------------------------------------------------------------- /icons/mask_blend_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons/mask_blend_inactive.png -------------------------------------------------------------------------------- /icons/mask_doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons/mask_doc.png -------------------------------------------------------------------------------- /icons/mask_exclusion_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons/mask_exclusion_active.png -------------------------------------------------------------------------------- /icons/mask_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons/mask_inactive.png -------------------------------------------------------------------------------- /icons/mask_union_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons/mask_union_active.png -------------------------------------------------------------------------------- /icons/mask_union_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons/mask_union_inactive.png -------------------------------------------------------------------------------- /icons/path4162.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons/path4162.png -------------------------------------------------------------------------------- /icons/photoflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons/photoflow.png -------------------------------------------------------------------------------- /icons/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons/plus.png -------------------------------------------------------------------------------- /icons/preview_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons/preview_active.png -------------------------------------------------------------------------------- /icons/preview_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons/preview_inactive.png -------------------------------------------------------------------------------- /icons/pushpin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons/pushpin.png -------------------------------------------------------------------------------- /icons/pushpin_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons/pushpin_active.png -------------------------------------------------------------------------------- /icons/pushpin_doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons/pushpin_doc.png -------------------------------------------------------------------------------- /icons/pushpin_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons/pushpin_inactive.png -------------------------------------------------------------------------------- /icons/redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons/redo.png -------------------------------------------------------------------------------- /icons/redo_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons/redo_active.png -------------------------------------------------------------------------------- /icons/redo_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons/redo_inactive.png -------------------------------------------------------------------------------- /icons/reset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons/reset.png -------------------------------------------------------------------------------- /icons/reset_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons/reset_active.png -------------------------------------------------------------------------------- /icons/reset_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons/reset_inactive.png -------------------------------------------------------------------------------- /icons/save-as.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons/save-as.png -------------------------------------------------------------------------------- /icons/shadows_clip_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons/shadows_clip_warning.png -------------------------------------------------------------------------------- /icons/tools/basic-edits.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons/tools/basic-edits.png -------------------------------------------------------------------------------- /icons/tools/bucket-fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons/tools/bucket-fill.png -------------------------------------------------------------------------------- /icons/tools/clone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons/tools/clone.png -------------------------------------------------------------------------------- /icons/tools/crop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons/tools/crop.png -------------------------------------------------------------------------------- /icons/tools/curves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons/tools/curves.png -------------------------------------------------------------------------------- /icons/tools/desaturate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons/tools/desaturate.png -------------------------------------------------------------------------------- /icons/tools/draw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons/tools/draw.png -------------------------------------------------------------------------------- /icons/tools/gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons/tools/gradient.png -------------------------------------------------------------------------------- /icons/tools/image_load.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons/tools/image_load.png -------------------------------------------------------------------------------- /icons/tools/path-mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons/tools/path-mask.png -------------------------------------------------------------------------------- /icons/tools/perspective.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons/tools/perspective.png -------------------------------------------------------------------------------- /icons/tools/scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons/tools/scale.png -------------------------------------------------------------------------------- /icons/trash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons/trash.png -------------------------------------------------------------------------------- /icons/undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons/undo.png -------------------------------------------------------------------------------- /icons/undo_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons/undo_active.png -------------------------------------------------------------------------------- /icons/undo_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons/undo_inactive.png -------------------------------------------------------------------------------- /icons/visible2_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons/visible2_active.png -------------------------------------------------------------------------------- /icons/visible_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons/visible_active.png -------------------------------------------------------------------------------- /icons/visible_doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons/visible_doc.png -------------------------------------------------------------------------------- /icons/visible_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/icons/visible_inactive.png -------------------------------------------------------------------------------- /osx/Info.plist.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/osx/Info.plist.in -------------------------------------------------------------------------------- /osx/charset.alias: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/osx/charset.alias -------------------------------------------------------------------------------- /osx/environment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/osx/environment.sh -------------------------------------------------------------------------------- /osx/gtkrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/osx/gtkrc -------------------------------------------------------------------------------- /osx/make_icon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/osx/make_icon.sh -------------------------------------------------------------------------------- /osx/package-photoflow.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/osx/package-photoflow.sh -------------------------------------------------------------------------------- /osx/photoflow-launcher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/osx/photoflow-launcher.sh -------------------------------------------------------------------------------- /osx/photoflow.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/osx/photoflow.bundle -------------------------------------------------------------------------------- /po/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/po/CMakeLists.txt -------------------------------------------------------------------------------- /po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/po/de.po -------------------------------------------------------------------------------- /po/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/po/fr.po -------------------------------------------------------------------------------- /po/photoflow.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/po/photoflow.pot -------------------------------------------------------------------------------- /po/pl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/po/pl.po -------------------------------------------------------------------------------- /presets/crossprocess.pfp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/presets/crossprocess.pfp -------------------------------------------------------------------------------- /presets/edge_sharpening.pfp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/presets/edge_sharpening.pfp -------------------------------------------------------------------------------- /presets/portra.pfp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/presets/portra.pfp -------------------------------------------------------------------------------- /presets/provia.pfp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/presets/provia.pfp -------------------------------------------------------------------------------- /presets/velvia.pfp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/presets/velvia.pfp -------------------------------------------------------------------------------- /presets/wavelet-decompose-5.pfp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/presets/wavelet-decompose-5.pfp -------------------------------------------------------------------------------- /presets/wavelet-sharpening-5.pfp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/presets/wavelet-sharpening-5.pfp -------------------------------------------------------------------------------- /presets/web_output.pfp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/presets/web_output.pfp -------------------------------------------------------------------------------- /scripts/exposure-blend/base.pfi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/scripts/exposure-blend/base.pfi -------------------------------------------------------------------------------- /scripts/exposure-blend/blend.pfp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/scripts/exposure-blend/blend.pfp -------------------------------------------------------------------------------- /scripts/exposure-blend/raw.pfp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/scripts/exposure-blend/raw.pfp -------------------------------------------------------------------------------- /scripts/exposure-blend/wb.pfp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/scripts/exposure-blend/wb.pfp -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/base/array2d.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/base/array2d.hh -------------------------------------------------------------------------------- /src/base/blend_add.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/base/blend_add.hh -------------------------------------------------------------------------------- /src/base/blend_color.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/base/blend_color.hh -------------------------------------------------------------------------------- /src/base/blend_darken.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/base/blend_darken.hh -------------------------------------------------------------------------------- /src/base/blend_divide.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/base/blend_divide.hh -------------------------------------------------------------------------------- /src/base/blend_exclusion.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/base/blend_exclusion.hh -------------------------------------------------------------------------------- /src/base/blend_grain_extract.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/base/blend_grain_extract.hh -------------------------------------------------------------------------------- /src/base/blend_grain_merge.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/base/blend_grain_merge.hh -------------------------------------------------------------------------------- /src/base/blend_hard_light.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/base/blend_hard_light.hh -------------------------------------------------------------------------------- /src/base/blend_lch.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/base/blend_lch.hh -------------------------------------------------------------------------------- /src/base/blend_lighten.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/base/blend_lighten.hh -------------------------------------------------------------------------------- /src/base/blend_luminance.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/base/blend_luminance.hh -------------------------------------------------------------------------------- /src/base/blend_luminosity.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/base/blend_luminosity.hh -------------------------------------------------------------------------------- /src/base/blend_multiply.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/base/blend_multiply.hh -------------------------------------------------------------------------------- /src/base/blend_normal.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/base/blend_normal.hh -------------------------------------------------------------------------------- /src/base/blend_overlay.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/base/blend_overlay.hh -------------------------------------------------------------------------------- /src/base/blend_passthrough.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/base/blend_passthrough.hh -------------------------------------------------------------------------------- /src/base/blend_screen.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/base/blend_screen.hh -------------------------------------------------------------------------------- /src/base/blend_soft_light.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/base/blend_soft_light.hh -------------------------------------------------------------------------------- /src/base/blend_subtract.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/base/blend_subtract.hh -------------------------------------------------------------------------------- /src/base/blend_vivid_light.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/base/blend_vivid_light.hh -------------------------------------------------------------------------------- /src/base/blender.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/base/blender.hh -------------------------------------------------------------------------------- /src/base/cachebuffer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/base/cachebuffer.cc -------------------------------------------------------------------------------- /src/base/cachebuffer.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/base/cachebuffer.hh -------------------------------------------------------------------------------- /src/base/closedsplinecurve.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/base/closedsplinecurve.cc -------------------------------------------------------------------------------- /src/base/color.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/base/color.cc -------------------------------------------------------------------------------- /src/base/color.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/base/color.hh -------------------------------------------------------------------------------- /src/base/condition.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/base/condition.hh -------------------------------------------------------------------------------- /src/base/curve.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/base/curve.cc -------------------------------------------------------------------------------- /src/base/curve.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/base/curve.hh -------------------------------------------------------------------------------- /src/base/exif_data.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/base/exif_data.cc -------------------------------------------------------------------------------- /src/base/exif_data.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/base/exif_data.hh -------------------------------------------------------------------------------- /src/base/file_util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/base/file_util.cc -------------------------------------------------------------------------------- /src/base/file_util.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/base/file_util.hh -------------------------------------------------------------------------------- /src/base/fileutils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/base/fileutils.cc -------------------------------------------------------------------------------- /src/base/fileutils.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/base/fileutils.hh -------------------------------------------------------------------------------- /src/base/format_info.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/base/format_info.cc -------------------------------------------------------------------------------- /src/base/format_info.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/base/format_info.hh -------------------------------------------------------------------------------- /src/base/icc/Lab.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/base/icc/Lab.cc -------------------------------------------------------------------------------- /src/base/icc/XYZ.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/base/icc/XYZ.cc -------------------------------------------------------------------------------- /src/base/icc/aces.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/base/icc/aces.cc -------------------------------------------------------------------------------- /src/base/icc/prophoto.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/base/icc/prophoto.cc -------------------------------------------------------------------------------- /src/base/icc/prophoto_d65.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/base/icc/prophoto_d65.cc -------------------------------------------------------------------------------- /src/base/icc/rec2020.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/base/icc/rec2020.cc -------------------------------------------------------------------------------- /src/base/icc/srgb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/base/icc/srgb.cc -------------------------------------------------------------------------------- /src/base/icc/srgb_d50.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/base/icc/srgb_d50.cc -------------------------------------------------------------------------------- /src/base/iccstore.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/base/iccstore.cc -------------------------------------------------------------------------------- /src/base/iccstore.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/base/iccstore.hh -------------------------------------------------------------------------------- /src/base/image.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/base/image.cc -------------------------------------------------------------------------------- /src/base/image.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/base/image.hh -------------------------------------------------------------------------------- /src/base/image_hierarchy.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/base/image_hierarchy.cc -------------------------------------------------------------------------------- /src/base/image_hierarchy.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/base/image_hierarchy.hh -------------------------------------------------------------------------------- /src/base/imageprocessor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/base/imageprocessor.cc -------------------------------------------------------------------------------- /src/base/imageprocessor.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/base/imageprocessor.hh -------------------------------------------------------------------------------- /src/base/imagepyramid.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/base/imagepyramid.cc -------------------------------------------------------------------------------- /src/base/imagepyramid.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/base/imagepyramid.hh -------------------------------------------------------------------------------- /src/base/layer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/base/layer.cc -------------------------------------------------------------------------------- /src/base/layer.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/base/layer.hh -------------------------------------------------------------------------------- /src/base/layermanager.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/base/layermanager.cc -------------------------------------------------------------------------------- /src/base/layermanager.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/base/layermanager.hh -------------------------------------------------------------------------------- /src/base/new_operation.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/base/new_operation.cc -------------------------------------------------------------------------------- /src/base/new_operation.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/base/new_operation.hh -------------------------------------------------------------------------------- /src/base/operation.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/base/operation.cc -------------------------------------------------------------------------------- /src/base/operation.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/base/operation.hh -------------------------------------------------------------------------------- /src/base/options.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/base/options.cc -------------------------------------------------------------------------------- /src/base/options.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/base/options.hh -------------------------------------------------------------------------------- /src/base/pf_file_loader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/base/pf_file_loader.cc -------------------------------------------------------------------------------- /src/base/pf_file_loader.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/base/pf_file_loader.hh -------------------------------------------------------------------------------- /src/base/pf_mkstemp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/base/pf_mkstemp.cc -------------------------------------------------------------------------------- /src/base/pf_mkstemp.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/base/pf_mkstemp.hh -------------------------------------------------------------------------------- /src/base/pftypes.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/base/pftypes.cc -------------------------------------------------------------------------------- /src/base/pftypes.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/base/pftypes.hh -------------------------------------------------------------------------------- /src/base/photoflow.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/base/photoflow.cc -------------------------------------------------------------------------------- /src/base/photoflow.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/base/photoflow.hh -------------------------------------------------------------------------------- /src/base/photoflow_run_batch.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/base/photoflow_run_batch.cc -------------------------------------------------------------------------------- /src/base/pipeline.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/base/pipeline.cc -------------------------------------------------------------------------------- /src/base/pipeline.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/base/pipeline.hh -------------------------------------------------------------------------------- /src/base/pixel_processor.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/base/pixel_processor.hh -------------------------------------------------------------------------------- /src/base/processor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/base/processor.cc -------------------------------------------------------------------------------- /src/base/processor.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/base/processor.hh -------------------------------------------------------------------------------- /src/base/processor_imp.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/base/processor_imp.hh -------------------------------------------------------------------------------- /src/base/property.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/base/property.cc -------------------------------------------------------------------------------- /src/base/property.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/base/property.hh -------------------------------------------------------------------------------- /src/base/rawbuffer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/base/rawbuffer.cc -------------------------------------------------------------------------------- /src/base/rawbuffer.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/base/rawbuffer.hh -------------------------------------------------------------------------------- /src/base/rawmatrix.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/base/rawmatrix.hh -------------------------------------------------------------------------------- /src/base/roi.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/base/roi.cc -------------------------------------------------------------------------------- /src/base/roi.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/base/roi.hh -------------------------------------------------------------------------------- /src/base/splinecurve.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/base/splinecurve.cc -------------------------------------------------------------------------------- /src/base/splinecurve.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/base/splinecurve.hh -------------------------------------------------------------------------------- /src/benchmarks/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/benchmarks/CMakeLists.txt -------------------------------------------------------------------------------- /src/benchmarks/invert.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/benchmarks/invert.cc -------------------------------------------------------------------------------- /src/benchmarks/matrix-3x3.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/benchmarks/matrix-3x3.cc -------------------------------------------------------------------------------- /src/external/darktable/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/external/darktable/AUTHORS -------------------------------------------------------------------------------- /src/external/darktable/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/external/darktable/LICENSE -------------------------------------------------------------------------------- /src/external/darktable/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/external/darktable/README.md -------------------------------------------------------------------------------- /src/external/exiv2/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/external/exiv2/AUTHORS -------------------------------------------------------------------------------- /src/external/exiv2/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/external/exiv2/COPYING -------------------------------------------------------------------------------- /src/external/exiv2/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/external/exiv2/README -------------------------------------------------------------------------------- /src/external/exiv2/README-CMAKE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/external/exiv2/README-CMAKE -------------------------------------------------------------------------------- /src/external/exiv2/TODO-CMAKE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/external/exiv2/TODO-CMAKE -------------------------------------------------------------------------------- /src/external/exiv2/po/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/external/exiv2/po/ChangeLog -------------------------------------------------------------------------------- /src/external/exiv2/po/LINGUAS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/external/exiv2/po/LINGUAS -------------------------------------------------------------------------------- /src/external/exiv2/po/Makevars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/external/exiv2/po/Makevars -------------------------------------------------------------------------------- /src/external/exiv2/po/Rules-quot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/external/exiv2/po/Rules-quot -------------------------------------------------------------------------------- /src/external/exiv2/po/bs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/external/exiv2/po/bs.po -------------------------------------------------------------------------------- /src/external/exiv2/po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/external/exiv2/po/de.po -------------------------------------------------------------------------------- /src/external/exiv2/po/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/external/exiv2/po/es.po -------------------------------------------------------------------------------- /src/external/exiv2/po/exiv2.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/external/exiv2/po/exiv2.pot -------------------------------------------------------------------------------- /src/external/exiv2/po/fi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/external/exiv2/po/fi.po -------------------------------------------------------------------------------- /src/external/exiv2/po/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/external/exiv2/po/fr.po -------------------------------------------------------------------------------- /src/external/exiv2/po/gl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/external/exiv2/po/gl.po -------------------------------------------------------------------------------- /src/external/exiv2/po/ms.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/external/exiv2/po/ms.po -------------------------------------------------------------------------------- /src/external/exiv2/po/pl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/external/exiv2/po/pl.po -------------------------------------------------------------------------------- /src/external/exiv2/po/pt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/external/exiv2/po/pt.po -------------------------------------------------------------------------------- /src/external/exiv2/po/quot.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/external/exiv2/po/quot.sed -------------------------------------------------------------------------------- /src/external/exiv2/po/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/external/exiv2/po/ru.po -------------------------------------------------------------------------------- /src/external/exiv2/po/sk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/external/exiv2/po/sk.po -------------------------------------------------------------------------------- /src/external/exiv2/po/sv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/external/exiv2/po/sv.po -------------------------------------------------------------------------------- /src/external/exiv2/po/ug.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/external/exiv2/po/ug.po -------------------------------------------------------------------------------- /src/external/exiv2/po/uk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/external/exiv2/po/uk.po -------------------------------------------------------------------------------- /src/external/exiv2/po/vi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/external/exiv2/po/vi.po -------------------------------------------------------------------------------- /src/external/exiv2/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/external/exiv2/src/Makefile -------------------------------------------------------------------------------- /src/external/exiv2/src/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/external/exiv2/src/TODO -------------------------------------------------------------------------------- /src/external/exiv2/src/error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/external/exiv2/src/error.cpp -------------------------------------------------------------------------------- /src/external/exiv2/src/exif.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/external/exiv2/src/exif.cpp -------------------------------------------------------------------------------- /src/external/exiv2/src/exiv2.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/external/exiv2/src/exiv2.1 -------------------------------------------------------------------------------- /src/external/exiv2/src/exiv2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/external/exiv2/src/exiv2.cpp -------------------------------------------------------------------------------- /src/external/exiv2/src/fff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/external/exiv2/src/fff.h -------------------------------------------------------------------------------- /src/external/exiv2/src/http.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/external/exiv2/src/http.cpp -------------------------------------------------------------------------------- /src/external/exiv2/src/i18n.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/external/exiv2/src/i18n.h -------------------------------------------------------------------------------- /src/external/exiv2/src/image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/external/exiv2/src/image.cpp -------------------------------------------------------------------------------- /src/external/exiv2/src/ini.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/external/exiv2/src/ini.cpp -------------------------------------------------------------------------------- /src/external/exiv2/src/iptc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/external/exiv2/src/iptc.cpp -------------------------------------------------------------------------------- /src/external/exiv2/src/private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/external/exiv2/src/private.h -------------------------------------------------------------------------------- /src/external/exiv2/src/src: -------------------------------------------------------------------------------- 1 | /Users/aferrero/Projects/Photoflow/Git/LinearGamma/PhotoFlow/src/external/exiv2/src -------------------------------------------------------------------------------- /src/external/exiv2/src/ssh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/external/exiv2/src/ssh.cpp -------------------------------------------------------------------------------- /src/external/exiv2/src/tags.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/external/exiv2/src/tags.cpp -------------------------------------------------------------------------------- /src/external/exiv2/src/timegm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/external/exiv2/src/timegm.h -------------------------------------------------------------------------------- /src/external/exiv2/src/types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/external/exiv2/src/types.cpp -------------------------------------------------------------------------------- /src/external/exiv2/src/tzfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/external/exiv2/src/tzfile.h -------------------------------------------------------------------------------- /src/external/exiv2/src/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/external/exiv2/src/utils.cpp -------------------------------------------------------------------------------- /src/external/exiv2/src/utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/external/exiv2/src/utils.hpp -------------------------------------------------------------------------------- /src/external/exiv2/src/value.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/external/exiv2/src/value.cpp -------------------------------------------------------------------------------- /src/external/exiv2/src/xmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/external/exiv2/src/xmp.cpp -------------------------------------------------------------------------------- /src/external/lensfun/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/external/lensfun/ChangeLog -------------------------------------------------------------------------------- /src/external/lensfun/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/external/lensfun/README.md -------------------------------------------------------------------------------- /src/external/lensfun/data/db/timestamp.txt: -------------------------------------------------------------------------------- 1 | 1484497692 2 | -------------------------------------------------------------------------------- /src/external/rawspeed/.ci/.gitattributes: -------------------------------------------------------------------------------- 1 | wro_deploy.enc binary 2 | -------------------------------------------------------------------------------- /src/external/rawspeed/.gitattributes: -------------------------------------------------------------------------------- 1 | # No binary files in here. 2 | * text 3 | -------------------------------------------------------------------------------- /src/external/rawspeed/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/external/rawspeed/.gitignore -------------------------------------------------------------------------------- /src/external/rawspeed/.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/external/rawspeed/.mailmap -------------------------------------------------------------------------------- /src/external/rawspeed/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/external/rawspeed/LICENSE -------------------------------------------------------------------------------- /src/external/rawspeed/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/external/rawspeed/README.rst -------------------------------------------------------------------------------- /src/external/rawspeed/bench/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(librawspeed) 2 | -------------------------------------------------------------------------------- /src/external/rawspeed/docs/lnt/index.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../../lnt/README.rst 2 | -------------------------------------------------------------------------------- /src/external/rawspeed/fuzz/librawspeed/decoders/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(TiffDecoders) 2 | -------------------------------------------------------------------------------- /src/external/rawspeed/lnt/litsupport_rawspeed/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/gui/doublebuffer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/gui/doublebuffer.cc -------------------------------------------------------------------------------- /src/gui/doublebuffer.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/gui/doublebuffer.hh -------------------------------------------------------------------------------- /src/gui/exportdialog.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/gui/exportdialog.cc -------------------------------------------------------------------------------- /src/gui/exportdialog.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/gui/exportdialog.hh -------------------------------------------------------------------------------- /src/gui/help.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/gui/help.cc -------------------------------------------------------------------------------- /src/gui/help.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/gui/help.hh -------------------------------------------------------------------------------- /src/gui/histogram.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/gui/histogram.cc -------------------------------------------------------------------------------- /src/gui/histogram.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/gui/histogram.hh -------------------------------------------------------------------------------- /src/gui/image_info.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/gui/image_info.cc -------------------------------------------------------------------------------- /src/gui/image_info.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/gui/image_info.hh -------------------------------------------------------------------------------- /src/gui/imagearea.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/gui/imagearea.cc -------------------------------------------------------------------------------- /src/gui/imagearea.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/gui/imagearea.hh -------------------------------------------------------------------------------- /src/gui/imageeditor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/gui/imageeditor.cc -------------------------------------------------------------------------------- /src/gui/imageeditor.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/gui/imageeditor.hh -------------------------------------------------------------------------------- /src/gui/layertree.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/gui/layertree.cc -------------------------------------------------------------------------------- /src/gui/layertree.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/gui/layertree.hh -------------------------------------------------------------------------------- /src/gui/layertree_dnd.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/gui/layertree_dnd.cc -------------------------------------------------------------------------------- /src/gui/layerwidget.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/gui/layerwidget.cc -------------------------------------------------------------------------------- /src/gui/layerwidget.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/gui/layerwidget.hh -------------------------------------------------------------------------------- /src/gui/mainwindow.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/gui/mainwindow.cc -------------------------------------------------------------------------------- /src/gui/mainwindow.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/gui/mainwindow.hh -------------------------------------------------------------------------------- /src/gui/operation_config_gui.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/gui/operation_config_gui.cc -------------------------------------------------------------------------------- /src/gui/operation_config_gui.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/gui/operation_config_gui.hh -------------------------------------------------------------------------------- /src/gui/operationstree.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/gui/operationstree.cc -------------------------------------------------------------------------------- /src/gui/operationstree.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/gui/operationstree.hh -------------------------------------------------------------------------------- /src/gui/raw_histogram.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/gui/raw_histogram.cc -------------------------------------------------------------------------------- /src/gui/raw_histogram.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/gui/raw_histogram.hh -------------------------------------------------------------------------------- /src/gui/sampler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/gui/sampler.cc -------------------------------------------------------------------------------- /src/gui/sampler.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/gui/sampler.hh -------------------------------------------------------------------------------- /src/gui/settingsdialog.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/gui/settingsdialog.cc -------------------------------------------------------------------------------- /src/gui/settingsdialog.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/gui/settingsdialog.hh -------------------------------------------------------------------------------- /src/gui/snapshotswidget.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/gui/snapshotswidget.cc -------------------------------------------------------------------------------- /src/gui/snapshotswidget.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/gui/snapshotswidget.hh -------------------------------------------------------------------------------- /src/gui/softproofdialog.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/gui/softproofdialog.cc -------------------------------------------------------------------------------- /src/gui/softproofdialog.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/gui/softproofdialog.hh -------------------------------------------------------------------------------- /src/gui/tablabelwidget.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/gui/tablabelwidget.hh -------------------------------------------------------------------------------- /src/gui/widgets/checkbox.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/gui/widgets/checkbox.cc -------------------------------------------------------------------------------- /src/gui/widgets/checkbox.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/gui/widgets/checkbox.hh -------------------------------------------------------------------------------- /src/gui/widgets/curveeditor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/gui/widgets/curveeditor.cc -------------------------------------------------------------------------------- /src/gui/widgets/curveeditor.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/gui/widgets/curveeditor.hh -------------------------------------------------------------------------------- /src/gui/widgets/imagebutton.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/gui/widgets/imagebutton.cc -------------------------------------------------------------------------------- /src/gui/widgets/imagebutton.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/gui/widgets/imagebutton.hh -------------------------------------------------------------------------------- /src/gui/widgets/layerlist.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/gui/widgets/layerlist.cc -------------------------------------------------------------------------------- /src/gui/widgets/layerlist.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/gui/widgets/layerlist.hh -------------------------------------------------------------------------------- /src/gui/widgets/numentry.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/gui/widgets/numentry.cc -------------------------------------------------------------------------------- /src/gui/widgets/numentry.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/gui/widgets/numentry.hh -------------------------------------------------------------------------------- /src/gui/widgets/pfwidget.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/gui/widgets/pfwidget.cc -------------------------------------------------------------------------------- /src/gui/widgets/pfwidget.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/gui/widgets/pfwidget.hh -------------------------------------------------------------------------------- /src/gui/widgets/selector.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/gui/widgets/selector.cc -------------------------------------------------------------------------------- /src/gui/widgets/selector.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/gui/widgets/selector.hh -------------------------------------------------------------------------------- /src/gui/widgets/slider.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/gui/widgets/slider.cc -------------------------------------------------------------------------------- /src/gui/widgets/slider.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/gui/widgets/slider.hh -------------------------------------------------------------------------------- /src/gui/widgets/textbox.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/gui/widgets/textbox.cc -------------------------------------------------------------------------------- /src/gui/widgets/textbox.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/gui/widgets/textbox.hh -------------------------------------------------------------------------------- /src/gui/widgets/toolbutton.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/gui/widgets/toolbutton.cc -------------------------------------------------------------------------------- /src/gui/widgets/toolbutton.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/gui/widgets/toolbutton.hh -------------------------------------------------------------------------------- /src/gui/widgets/vslider.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/gui/widgets/vslider.cc -------------------------------------------------------------------------------- /src/gui/widgets/vslider.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/gui/widgets/vslider.hh -------------------------------------------------------------------------------- /src/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/main.cc -------------------------------------------------------------------------------- /src/operations/CTMF/ctmf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/CTMF/ctmf.c -------------------------------------------------------------------------------- /src/operations/CTMF/ctmf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/CTMF/ctmf.h -------------------------------------------------------------------------------- /src/operations/Filmic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/Filmic/README.md -------------------------------------------------------------------------------- /src/operations/OCIO/ocio_aces.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/OCIO/ocio_aces.cc -------------------------------------------------------------------------------- /src/operations/OCIO/ocio_aces.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/OCIO/ocio_aces.hh -------------------------------------------------------------------------------- /src/operations/amaze_demosaic.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/amaze_demosaic.cc -------------------------------------------------------------------------------- /src/operations/amaze_demosaic.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/amaze_demosaic.hh -------------------------------------------------------------------------------- /src/operations/blender.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/blender.cc -------------------------------------------------------------------------------- /src/operations/blender.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/blender.hh -------------------------------------------------------------------------------- /src/operations/blur_bilateral.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/blur_bilateral.cc -------------------------------------------------------------------------------- /src/operations/blur_bilateral.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/blur_bilateral.hh -------------------------------------------------------------------------------- /src/operations/buffer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/buffer.cc -------------------------------------------------------------------------------- /src/operations/buffer.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/buffer.hh -------------------------------------------------------------------------------- /src/operations/ca_correct.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/ca_correct.cc -------------------------------------------------------------------------------- /src/operations/ca_correct.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/ca_correct.hh -------------------------------------------------------------------------------- /src/operations/channel_mixer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/channel_mixer.cc -------------------------------------------------------------------------------- /src/operations/channel_mixer.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/channel_mixer.hh -------------------------------------------------------------------------------- /src/operations/clahe.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/clahe.cc -------------------------------------------------------------------------------- /src/operations/clahe.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/clahe.hh -------------------------------------------------------------------------------- /src/operations/clip.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/clip.cc -------------------------------------------------------------------------------- /src/operations/clip.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/clip.hh -------------------------------------------------------------------------------- /src/operations/clone.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/clone.cc -------------------------------------------------------------------------------- /src/operations/clone.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/clone.hh -------------------------------------------------------------------------------- /src/operations/clone_stamp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/clone_stamp.cc -------------------------------------------------------------------------------- /src/operations/clone_stamp.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/clone_stamp.hh -------------------------------------------------------------------------------- /src/operations/convertformat.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/convertformat.cc -------------------------------------------------------------------------------- /src/operations/convertformat.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/convertformat.hh -------------------------------------------------------------------------------- /src/operations/crop.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/crop.cc -------------------------------------------------------------------------------- /src/operations/crop.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/crop.hh -------------------------------------------------------------------------------- /src/operations/curves.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/curves.cc -------------------------------------------------------------------------------- /src/operations/curves.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/curves.hh -------------------------------------------------------------------------------- /src/operations/curves_rgb.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/curves_rgb.hh -------------------------------------------------------------------------------- /src/operations/defringe.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/defringe.cc -------------------------------------------------------------------------------- /src/operations/defringe.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/defringe.hh -------------------------------------------------------------------------------- /src/operations/denoise.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/denoise.cc -------------------------------------------------------------------------------- /src/operations/denoise.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/denoise.hh -------------------------------------------------------------------------------- /src/operations/desaturate.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/desaturate.cc -------------------------------------------------------------------------------- /src/operations/desaturate.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/desaturate.hh -------------------------------------------------------------------------------- /src/operations/draw.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/draw.cc -------------------------------------------------------------------------------- /src/operations/draw.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/draw.hh -------------------------------------------------------------------------------- /src/operations/enhanced_usm.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/enhanced_usm.cc -------------------------------------------------------------------------------- /src/operations/enhanced_usm.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/enhanced_usm.hh -------------------------------------------------------------------------------- /src/operations/fast_demosaic.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/fast_demosaic.cc -------------------------------------------------------------------------------- /src/operations/fast_demosaic.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/fast_demosaic.hh -------------------------------------------------------------------------------- /src/operations/gaussblur.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/gaussblur.cc -------------------------------------------------------------------------------- /src/operations/gaussblur.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/gaussblur.hh -------------------------------------------------------------------------------- /src/operations/gaussblur_sii.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/gaussblur_sii.cc -------------------------------------------------------------------------------- /src/operations/gaussblur_sii.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/gaussblur_sii.hh -------------------------------------------------------------------------------- /src/operations/gmic/convolve.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/gmic/convolve.cc -------------------------------------------------------------------------------- /src/operations/gmic/convolve.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/gmic/convolve.hh -------------------------------------------------------------------------------- /src/operations/gmic/gmic.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/gmic/gmic.cc -------------------------------------------------------------------------------- /src/operations/gmic/gmic.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/gmic/gmic.hh -------------------------------------------------------------------------------- /src/operations/gradient.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/gradient.cc -------------------------------------------------------------------------------- /src/operations/gradient.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/gradient.hh -------------------------------------------------------------------------------- /src/operations/guided_filter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/guided_filter.cc -------------------------------------------------------------------------------- /src/operations/guided_filter.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/guided_filter.hh -------------------------------------------------------------------------------- /src/operations/hotpixels.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/hotpixels.cc -------------------------------------------------------------------------------- /src/operations/hotpixels.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/hotpixels.hh -------------------------------------------------------------------------------- /src/operations/hsl_mask.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/hsl_mask.cc -------------------------------------------------------------------------------- /src/operations/hsl_mask.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/hsl_mask.hh -------------------------------------------------------------------------------- /src/operations/icc_transform.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/icc_transform.cc -------------------------------------------------------------------------------- /src/operations/icc_transform.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/icc_transform.hh -------------------------------------------------------------------------------- /src/operations/igv_demosaic.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/igv_demosaic.cc -------------------------------------------------------------------------------- /src/operations/igv_demosaic.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/igv_demosaic.hh -------------------------------------------------------------------------------- /src/operations/image_reader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/image_reader.cc -------------------------------------------------------------------------------- /src/operations/image_reader.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/image_reader.hh -------------------------------------------------------------------------------- /src/operations/image_to_map.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/image_to_map.cc -------------------------------------------------------------------------------- /src/operations/image_to_map.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/image_to_map.hh -------------------------------------------------------------------------------- /src/operations/impulse_nr.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/impulse_nr.cc -------------------------------------------------------------------------------- /src/operations/impulse_nr.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/impulse_nr.hh -------------------------------------------------------------------------------- /src/operations/invert.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/invert.cc -------------------------------------------------------------------------------- /src/operations/invert.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/invert.hh -------------------------------------------------------------------------------- /src/operations/lensfun.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/lensfun.cc -------------------------------------------------------------------------------- /src/operations/lensfun.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/lensfun.hh -------------------------------------------------------------------------------- /src/operations/levels.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/levels.cc -------------------------------------------------------------------------------- /src/operations/levels.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/levels.hh -------------------------------------------------------------------------------- /src/operations/lmmse_demosaic.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/lmmse_demosaic.cc -------------------------------------------------------------------------------- /src/operations/lmmse_demosaic.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/lmmse_demosaic.hh -------------------------------------------------------------------------------- /src/operations/local_contrast.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/local_contrast.cc -------------------------------------------------------------------------------- /src/operations/local_contrast.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/local_contrast.hh -------------------------------------------------------------------------------- /src/operations/maxrgb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/maxrgb.cc -------------------------------------------------------------------------------- /src/operations/maxrgb.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/maxrgb.hh -------------------------------------------------------------------------------- /src/operations/median_filter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/median_filter.cc -------------------------------------------------------------------------------- /src/operations/median_filter.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/median_filter.hh -------------------------------------------------------------------------------- /src/operations/nlmeans.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/nlmeans.cc -------------------------------------------------------------------------------- /src/operations/nlmeans.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/nlmeans.hh -------------------------------------------------------------------------------- /src/operations/no_demosaic.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/no_demosaic.cc -------------------------------------------------------------------------------- /src/operations/no_demosaic.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/no_demosaic.hh -------------------------------------------------------------------------------- /src/operations/operations.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/operations.cc -------------------------------------------------------------------------------- /src/operations/operations.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/operations.hh -------------------------------------------------------------------------------- /src/operations/padded_op.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/padded_op.cc -------------------------------------------------------------------------------- /src/operations/padded_op.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/padded_op.hh -------------------------------------------------------------------------------- /src/operations/path_mask.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/path_mask.cc -------------------------------------------------------------------------------- /src/operations/path_mask.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/path_mask.hh -------------------------------------------------------------------------------- /src/operations/perspective.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/perspective.cc -------------------------------------------------------------------------------- /src/operations/perspective.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/perspective.hh -------------------------------------------------------------------------------- /src/operations/raster_image.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/raster_image.cc -------------------------------------------------------------------------------- /src/operations/raster_image.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/raster_image.hh -------------------------------------------------------------------------------- /src/operations/raw_developer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/raw_developer.cc -------------------------------------------------------------------------------- /src/operations/raw_developer.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/raw_developer.hh -------------------------------------------------------------------------------- /src/operations/raw_hl_reco.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/raw_hl_reco.cc -------------------------------------------------------------------------------- /src/operations/raw_hl_reco.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/raw_hl_reco.hh -------------------------------------------------------------------------------- /src/operations/raw_image.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/raw_image.cc -------------------------------------------------------------------------------- /src/operations/raw_image.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/raw_image.hh -------------------------------------------------------------------------------- /src/operations/raw_loader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/raw_loader.cc -------------------------------------------------------------------------------- /src/operations/raw_loader.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/raw_loader.hh -------------------------------------------------------------------------------- /src/operations/raw_output.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/raw_output.cc -------------------------------------------------------------------------------- /src/operations/raw_output.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/raw_output.hh -------------------------------------------------------------------------------- /src/operations/rcd_demosaic.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/rcd_demosaic.cc -------------------------------------------------------------------------------- /src/operations/rcd_demosaic.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/rcd_demosaic.hh -------------------------------------------------------------------------------- /src/operations/relight.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/relight.cc -------------------------------------------------------------------------------- /src/operations/relight.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/relight.hh -------------------------------------------------------------------------------- /src/operations/scale.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/scale.cc -------------------------------------------------------------------------------- /src/operations/scale.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/scale.hh -------------------------------------------------------------------------------- /src/operations/sharpen.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/sharpen.cc -------------------------------------------------------------------------------- /src/operations/sharpen.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/sharpen.hh -------------------------------------------------------------------------------- /src/operations/split_details.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/split_details.cc -------------------------------------------------------------------------------- /src/operations/split_details.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/split_details.hh -------------------------------------------------------------------------------- /src/operations/subtr_image.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/subtr_image.cc -------------------------------------------------------------------------------- /src/operations/subtr_image.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/subtr_image.hh -------------------------------------------------------------------------------- /src/operations/threshold.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/threshold.cc -------------------------------------------------------------------------------- /src/operations/threshold.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/threshold.hh -------------------------------------------------------------------------------- /src/operations/tone_mapping.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/tone_mapping.cc -------------------------------------------------------------------------------- /src/operations/tone_mapping.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/tone_mapping.hh -------------------------------------------------------------------------------- /src/operations/trcconv.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/trcconv.cc -------------------------------------------------------------------------------- /src/operations/trcconv.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/trcconv.hh -------------------------------------------------------------------------------- /src/operations/uniform.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/uniform.cc -------------------------------------------------------------------------------- /src/operations/uniform.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/uniform.hh -------------------------------------------------------------------------------- /src/operations/unsharp_mask.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/unsharp_mask.cc -------------------------------------------------------------------------------- /src/operations/unsharp_mask.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/unsharp_mask.hh -------------------------------------------------------------------------------- /src/operations/untiled_op.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/untiled_op.cc -------------------------------------------------------------------------------- /src/operations/untiled_op.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/untiled_op.hh -------------------------------------------------------------------------------- /src/operations/vips_operation.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/vips_operation.cc -------------------------------------------------------------------------------- /src/operations/vips_operation.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/vips_operation.hh -------------------------------------------------------------------------------- /src/operations/volume.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/volume.cc -------------------------------------------------------------------------------- /src/operations/volume.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/volume.hh -------------------------------------------------------------------------------- /src/operations/wavdec.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/wavdec.cc -------------------------------------------------------------------------------- /src/operations/wavdec.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/wavdec.hh -------------------------------------------------------------------------------- /src/operations/white_balance.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/white_balance.cc -------------------------------------------------------------------------------- /src/operations/white_balance.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/operations/white_balance.hh -------------------------------------------------------------------------------- /src/pfbatch.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/pfbatch.cc -------------------------------------------------------------------------------- /src/phf_stack.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/phf_stack.cc -------------------------------------------------------------------------------- /src/plugin/pluginwindow.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/plugin/pluginwindow.cc -------------------------------------------------------------------------------- /src/plugin/pluginwindow.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/plugin/pluginwindow.hh -------------------------------------------------------------------------------- /src/rt/rtengine/CA_correct_RT.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/rt/rtengine/CA_correct_RT.cc -------------------------------------------------------------------------------- /src/rt/rtengine/LUT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/rt/rtengine/LUT.h -------------------------------------------------------------------------------- /src/rt/rtengine/StopWatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/rt/rtengine/StopWatch.h -------------------------------------------------------------------------------- /src/rt/rtengine/alignedbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/rt/rtengine/alignedbuffer.h -------------------------------------------------------------------------------- /src/rt/rtengine/array2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/rt/rtengine/array2D.h -------------------------------------------------------------------------------- /src/rt/rtengine/boxblur.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/rt/rtengine/boxblur.h -------------------------------------------------------------------------------- /src/rt/rtengine/cJSON.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/rt/rtengine/cJSON.c -------------------------------------------------------------------------------- /src/rt/rtengine/cJSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/rt/rtengine/cJSON.h -------------------------------------------------------------------------------- /src/rt/rtengine/camconst.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/rt/rtengine/camconst.cc -------------------------------------------------------------------------------- /src/rt/rtengine/camconst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/rt/rtengine/camconst.h -------------------------------------------------------------------------------- /src/rt/rtengine/camconst.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/rt/rtengine/camconst.json -------------------------------------------------------------------------------- /src/rt/rtengine/color.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/rt/rtengine/color.cc -------------------------------------------------------------------------------- /src/rt/rtengine/color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/rt/rtengine/color.h -------------------------------------------------------------------------------- /src/rt/rtengine/coord.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/rt/rtengine/coord.cc -------------------------------------------------------------------------------- /src/rt/rtengine/coord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/rt/rtengine/coord.h -------------------------------------------------------------------------------- /src/rt/rtengine/curves.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/rt/rtengine/curves.cc -------------------------------------------------------------------------------- /src/rt/rtengine/curves.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/rt/rtengine/curves.h -------------------------------------------------------------------------------- /src/rt/rtengine/dcp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/rt/rtengine/dcp.cc -------------------------------------------------------------------------------- /src/rt/rtengine/dcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/rt/rtengine/dcp.h -------------------------------------------------------------------------------- /src/rt/rtengine/dcraw.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/rt/rtengine/dcraw.cc -------------------------------------------------------------------------------- /src/rt/rtengine/dcraw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/rt/rtengine/dcraw.h -------------------------------------------------------------------------------- /src/rt/rtengine/flatcurves.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/rt/rtengine/flatcurves.cc -------------------------------------------------------------------------------- /src/rt/rtengine/helperavx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/rt/rtengine/helperavx.h -------------------------------------------------------------------------------- /src/rt/rtengine/helpersse2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/rt/rtengine/helpersse2.h -------------------------------------------------------------------------------- /src/rt/rtengine/iccmatrices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/rt/rtengine/iccmatrices.h -------------------------------------------------------------------------------- /src/rt/rtengine/imagedata.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/rt/rtengine/imagedata.cc -------------------------------------------------------------------------------- /src/rt/rtengine/imagedata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/rt/rtengine/imagedata.h -------------------------------------------------------------------------------- /src/rt/rtengine/imageformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/rt/rtengine/imageformat.h -------------------------------------------------------------------------------- /src/rt/rtengine/imageio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/rt/rtengine/imageio.h -------------------------------------------------------------------------------- /src/rt/rtengine/iptcpairs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/rt/rtengine/iptcpairs.h -------------------------------------------------------------------------------- /src/rt/rtengine/jpeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/rt/rtengine/jpeg.h -------------------------------------------------------------------------------- /src/rt/rtengine/jpeg_ijg/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/rt/rtengine/jpeg_ijg/README -------------------------------------------------------------------------------- /src/rt/rtengine/lj92.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/rt/rtengine/lj92.c -------------------------------------------------------------------------------- /src/rt/rtengine/lj92.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/rt/rtengine/lj92.h -------------------------------------------------------------------------------- /src/rt/rtengine/median.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/rt/rtengine/median.h -------------------------------------------------------------------------------- /src/rt/rtengine/myfile.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/rt/rtengine/myfile.cc -------------------------------------------------------------------------------- /src/rt/rtengine/myfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/rt/rtengine/myfile.h -------------------------------------------------------------------------------- /src/rt/rtengine/mytime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/rt/rtengine/mytime.h -------------------------------------------------------------------------------- /src/rt/rtengine/noncopyable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/rt/rtengine/noncopyable.h -------------------------------------------------------------------------------- /src/rt/rtengine/opthelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/rt/rtengine/opthelper.h -------------------------------------------------------------------------------- /src/rt/rtengine/procparams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/rt/rtengine/procparams.h -------------------------------------------------------------------------------- /src/rt/rtengine/rawimage.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/rt/rtengine/rawimage.cc -------------------------------------------------------------------------------- /src/rt/rtengine/rawimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/rt/rtengine/rawimage.h -------------------------------------------------------------------------------- /src/rt/rtengine/rescale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/rt/rtengine/rescale.h -------------------------------------------------------------------------------- /src/rt/rtengine/rt_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/rt/rtengine/rt_math.h -------------------------------------------------------------------------------- /src/rt/rtengine/rtengine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/rt/rtengine/rtengine.h -------------------------------------------------------------------------------- /src/rt/rtengine/rtlensfun.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/rt/rtengine/rtlensfun.cc -------------------------------------------------------------------------------- /src/rt/rtengine/rtlensfun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/rt/rtengine/rtlensfun.h -------------------------------------------------------------------------------- /src/rt/rtengine/safekeyfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/rt/rtengine/safekeyfile.h -------------------------------------------------------------------------------- /src/rt/rtengine/settings.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/rt/rtengine/settings.cc -------------------------------------------------------------------------------- /src/rt/rtengine/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/rt/rtengine/settings.h -------------------------------------------------------------------------------- /src/rt/rtengine/sleef.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/rt/rtengine/sleef.c -------------------------------------------------------------------------------- /src/rt/rtengine/sleef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/rt/rtengine/sleef.h -------------------------------------------------------------------------------- /src/rt/rtengine/sleefsseavx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/rt/rtengine/sleefsseavx.c -------------------------------------------------------------------------------- /src/rt/rtengine/sleefsseavx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/rt/rtengine/sleefsseavx.h -------------------------------------------------------------------------------- /src/rt/rtengine/utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/rt/rtengine/utils.cc -------------------------------------------------------------------------------- /src/rt/rtengine/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/rt/rtengine/utils.h -------------------------------------------------------------------------------- /src/rt/rtexif/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/rt/rtexif/CMakeLists.txt -------------------------------------------------------------------------------- /src/rt/rtexif/canonattribs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/rt/rtexif/canonattribs.cc -------------------------------------------------------------------------------- /src/rt/rtexif/fujiattribs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/rt/rtexif/fujiattribs.cc -------------------------------------------------------------------------------- /src/rt/rtexif/kodakattribs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/rt/rtexif/kodakattribs.cc -------------------------------------------------------------------------------- /src/rt/rtexif/nikonattribs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/rt/rtexif/nikonattribs.cc -------------------------------------------------------------------------------- /src/rt/rtexif/olympusattribs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/rt/rtexif/olympusattribs.cc -------------------------------------------------------------------------------- /src/rt/rtexif/pentaxattribs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/rt/rtexif/pentaxattribs.cc -------------------------------------------------------------------------------- /src/rt/rtexif/rtexif.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/rt/rtexif/rtexif.cc -------------------------------------------------------------------------------- /src/rt/rtexif/rtexif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/rt/rtexif/rtexif.h -------------------------------------------------------------------------------- /src/rt/rtexif/stdattribs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/rt/rtexif/stdattribs.cc -------------------------------------------------------------------------------- /src/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/tests/CMakeLists.txt -------------------------------------------------------------------------------- /src/tests/cast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/tests/cast.c -------------------------------------------------------------------------------- /src/tests/draw.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/tests/draw.cc -------------------------------------------------------------------------------- /src/tests/draw2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/tests/draw2.cc -------------------------------------------------------------------------------- /src/tests/gmic.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/tests/gmic.cc -------------------------------------------------------------------------------- /src/tests/gmic_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/tests/gmic_test.cc -------------------------------------------------------------------------------- /src/tests/gmic_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/tests/gmic_test.cpp -------------------------------------------------------------------------------- /src/tests/gtkdisp2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/tests/gtkdisp2.cc -------------------------------------------------------------------------------- /src/tests/icc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/tests/icc.c -------------------------------------------------------------------------------- /src/tests/rawsave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/tests/rawsave.c -------------------------------------------------------------------------------- /src/tests/refcount.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/tests/refcount.cc -------------------------------------------------------------------------------- /src/tests/scrollwin.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/tests/scrollwin.cc -------------------------------------------------------------------------------- /src/tests/unprocessed_raw.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/tests/unprocessed_raw.cc -------------------------------------------------------------------------------- /src/tests/vector.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/tests/vector.cc -------------------------------------------------------------------------------- /src/version.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/version.cc -------------------------------------------------------------------------------- /src/version.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/version.hh -------------------------------------------------------------------------------- /src/vips/clone_stamp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/vips/clone_stamp.cc -------------------------------------------------------------------------------- /src/vips/gmic/generate/blur.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/vips/gmic/generate/blur.conf -------------------------------------------------------------------------------- /src/vips/gmic/generate/gen_op.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/vips/gmic/generate/gen_op.sh -------------------------------------------------------------------------------- /src/vips/gmic/generate/op.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/vips/gmic/generate/op.cc -------------------------------------------------------------------------------- /src/vips/gmic/generate/op.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/vips/gmic/generate/op.hh -------------------------------------------------------------------------------- /src/vips/gmic/generate/par_proto.cpp: -------------------------------------------------------------------------------- 1 | Property prop_sigma; 2 | -------------------------------------------------------------------------------- /src/vips/gmic/gmic/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/vips/gmic/gmic/COPYING -------------------------------------------------------------------------------- /src/vips/gmic/gmic/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/vips/gmic/gmic/README -------------------------------------------------------------------------------- /src/vips/gmic/gmic/src/CImg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/vips/gmic/gmic/src/CImg.h -------------------------------------------------------------------------------- /src/vips/gmic/gmic/src/gmic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/vips/gmic/gmic/src/gmic.cpp -------------------------------------------------------------------------------- /src/vips/gmic/gmic/src/gmic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/vips/gmic/gmic/src/gmic.h -------------------------------------------------------------------------------- /src/vips/gmic/vips_gmic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/vips/gmic/vips_gmic.cpp -------------------------------------------------------------------------------- /src/vips/layer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/vips/layer.cc -------------------------------------------------------------------------------- /src/vips/lensfun.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/vips/lensfun.cc -------------------------------------------------------------------------------- /src/vips/perspective.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/vips/perspective.cc -------------------------------------------------------------------------------- /src/vips/sinkscreen_pf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/vips/sinkscreen_pf.c -------------------------------------------------------------------------------- /src/vips/tilecache_pf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/vips/tilecache_pf.c -------------------------------------------------------------------------------- /src/vips/vips2openexr.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/src/vips/vips2openexr.cc -------------------------------------------------------------------------------- /themes/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/themes/COPYING -------------------------------------------------------------------------------- /themes/assets/arrow-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/themes/assets/arrow-down.png -------------------------------------------------------------------------------- /themes/assets/arrow-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/themes/assets/arrow-left.png -------------------------------------------------------------------------------- /themes/assets/arrow-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/themes/assets/arrow-right.png -------------------------------------------------------------------------------- /themes/assets/arrow-up-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/themes/assets/arrow-up-small.png -------------------------------------------------------------------------------- /themes/assets/arrow-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/themes/assets/arrow-up.png -------------------------------------------------------------------------------- /themes/assets/border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/themes/assets/border.png -------------------------------------------------------------------------------- /themes/assets/button-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/themes/assets/button-active.png -------------------------------------------------------------------------------- /themes/assets/button-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/themes/assets/button-hover.png -------------------------------------------------------------------------------- /themes/assets/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/themes/assets/button.png -------------------------------------------------------------------------------- /themes/assets/combo-entry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/themes/assets/combo-entry.png -------------------------------------------------------------------------------- /themes/assets/entry-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/themes/assets/entry-bg.png -------------------------------------------------------------------------------- /themes/assets/entry-notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/themes/assets/entry-notebook.png -------------------------------------------------------------------------------- /themes/assets/entry-toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/themes/assets/entry-toolbar.png -------------------------------------------------------------------------------- /themes/assets/focus-line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/themes/assets/focus-line.png -------------------------------------------------------------------------------- /themes/assets/frame-gap-end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/themes/assets/frame-gap-end.png -------------------------------------------------------------------------------- /themes/assets/frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/themes/assets/frame.png -------------------------------------------------------------------------------- /themes/assets/handle-h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/themes/assets/handle-h.png -------------------------------------------------------------------------------- /themes/assets/handle-v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/themes/assets/handle-v.png -------------------------------------------------------------------------------- /themes/assets/inline-toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/themes/assets/inline-toolbar.png -------------------------------------------------------------------------------- /themes/assets/line-h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/themes/assets/line-h.png -------------------------------------------------------------------------------- /themes/assets/line-v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/themes/assets/line-v.png -------------------------------------------------------------------------------- /themes/assets/menu-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/themes/assets/menu-arrow.png -------------------------------------------------------------------------------- /themes/assets/menu-separator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/themes/assets/menu-separator.png -------------------------------------------------------------------------------- /themes/assets/menubar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/themes/assets/menubar.png -------------------------------------------------------------------------------- /themes/assets/menubar_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/themes/assets/menubar_button.png -------------------------------------------------------------------------------- /themes/assets/menuitem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/themes/assets/menuitem.png -------------------------------------------------------------------------------- /themes/assets/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/themes/assets/minus.png -------------------------------------------------------------------------------- /themes/assets/notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/themes/assets/notebook.png -------------------------------------------------------------------------------- /themes/assets/null.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/themes/assets/null.png -------------------------------------------------------------------------------- /themes/assets/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/themes/assets/plus.png -------------------------------------------------------------------------------- /themes/assets/progressbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/themes/assets/progressbar.png -------------------------------------------------------------------------------- /themes/assets/progressbar_v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/themes/assets/progressbar_v.png -------------------------------------------------------------------------------- /themes/assets/radio-checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/themes/assets/radio-checked.png -------------------------------------------------------------------------------- /themes/assets/slider-horiz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/themes/assets/slider-horiz.png -------------------------------------------------------------------------------- /themes/assets/slider-vert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/themes/assets/slider-vert.png -------------------------------------------------------------------------------- /themes/assets/slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/themes/assets/slider.png -------------------------------------------------------------------------------- /themes/assets/tab-top-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/themes/assets/tab-top-active.png -------------------------------------------------------------------------------- /themes/assets/toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/themes/assets/toolbar.png -------------------------------------------------------------------------------- /themes/assets/tree_header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/themes/assets/tree_header.png -------------------------------------------------------------------------------- /themes/assets/up-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/themes/assets/up-background.png -------------------------------------------------------------------------------- /themes/gtkrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/themes/gtkrc -------------------------------------------------------------------------------- /themes/index.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/themes/index.theme -------------------------------------------------------------------------------- /themes/main.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/themes/main.rc -------------------------------------------------------------------------------- /themes/photoflow-dark.gtkrc: -------------------------------------------------------------------------------- 1 | gtkrc -------------------------------------------------------------------------------- /themes_old/photoflow-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/themes_old/photoflow-dark.css -------------------------------------------------------------------------------- /themes_old/photoflow-dark.gtkrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/themes_old/photoflow-dark.gtkrc -------------------------------------------------------------------------------- /themes_old/ui/arrow-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/themes_old/ui/arrow-down.png -------------------------------------------------------------------------------- /themes_old/ui/arrow-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/themes_old/ui/arrow-left.png -------------------------------------------------------------------------------- /themes_old/ui/arrow-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/themes_old/ui/arrow-right.png -------------------------------------------------------------------------------- /themes_old/ui/arrow-up-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/themes_old/ui/arrow-up-small.png -------------------------------------------------------------------------------- /themes_old/ui/arrow-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/themes_old/ui/arrow-up.png -------------------------------------------------------------------------------- /themes_old/ui/bar-h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/themes_old/ui/bar-h.png -------------------------------------------------------------------------------- /themes_old/ui/bar-v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/themes_old/ui/bar-v.png -------------------------------------------------------------------------------- /themes_old/ui/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/themes_old/ui/blue.png -------------------------------------------------------------------------------- /themes_old/ui/button-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/themes_old/ui/button-default.png -------------------------------------------------------------------------------- /themes_old/ui/button-normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/themes_old/ui/button-normal.png -------------------------------------------------------------------------------- /themes_old/ui/button-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/themes_old/ui/button-pressed.png -------------------------------------------------------------------------------- /themes_old/ui/check1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/themes_old/ui/check1.png -------------------------------------------------------------------------------- /themes_old/ui/check2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/themes_old/ui/check2.png -------------------------------------------------------------------------------- /themes_old/ui/check3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/themes_old/ui/check3.png -------------------------------------------------------------------------------- /themes_old/ui/down-pre.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/themes_old/ui/down-pre.png -------------------------------------------------------------------------------- /themes_old/ui/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/themes_old/ui/down.png -------------------------------------------------------------------------------- /themes_old/ui/ext-bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/themes_old/ui/ext-bottom.png -------------------------------------------------------------------------------- /themes_old/ui/ext-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/themes_old/ui/ext-left.png -------------------------------------------------------------------------------- /themes_old/ui/ext-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/themes_old/ui/ext-right.png -------------------------------------------------------------------------------- /themes_old/ui/ext-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/themes_old/ui/ext-top.png -------------------------------------------------------------------------------- /themes_old/ui/extension-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/themes_old/ui/extension-left.png -------------------------------------------------------------------------------- /themes_old/ui/extension-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/themes_old/ui/extension-top.png -------------------------------------------------------------------------------- /themes_old/ui/frame-gap-end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/themes_old/ui/frame-gap-end.png -------------------------------------------------------------------------------- /themes_old/ui/frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/themes_old/ui/frame.png -------------------------------------------------------------------------------- /themes_old/ui/gap_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/themes_old/ui/gap_bottom.png -------------------------------------------------------------------------------- /themes_old/ui/gap_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/themes_old/ui/gap_left.png -------------------------------------------------------------------------------- /themes_old/ui/gap_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/themes_old/ui/gap_right.png -------------------------------------------------------------------------------- /themes_old/ui/gap_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/themes_old/ui/gap_top.png -------------------------------------------------------------------------------- /themes_old/ui/gimp-arrow-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/themes_old/ui/gimp-arrow-up.png -------------------------------------------------------------------------------- /themes_old/ui/gimp-handle-h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/themes_old/ui/gimp-handle-h.png -------------------------------------------------------------------------------- /themes_old/ui/gimp-handle-v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/themes_old/ui/gimp-handle-v.png -------------------------------------------------------------------------------- /themes_old/ui/gimp-line-h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/themes_old/ui/gimp-line-h.png -------------------------------------------------------------------------------- /themes_old/ui/gimp-line-v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/themes_old/ui/gimp-line-v.png -------------------------------------------------------------------------------- /themes_old/ui/list_header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/themes_old/ui/list_header.png -------------------------------------------------------------------------------- /themes_old/ui/menu-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/themes_old/ui/menu-arrow.png -------------------------------------------------------------------------------- /themes_old/ui/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/themes_old/ui/menu.png -------------------------------------------------------------------------------- /themes_old/ui/menubar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/themes_old/ui/menubar.png -------------------------------------------------------------------------------- /themes_old/ui/menuitem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/themes_old/ui/menuitem.png -------------------------------------------------------------------------------- /themes_old/ui/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/themes_old/ui/minus.png -------------------------------------------------------------------------------- /themes_old/ui/notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/themes_old/ui/notebook.png -------------------------------------------------------------------------------- /themes_old/ui/null.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/themes_old/ui/null.png -------------------------------------------------------------------------------- /themes_old/ui/option1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/themes_old/ui/option1.png -------------------------------------------------------------------------------- /themes_old/ui/option2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/themes_old/ui/option2.png -------------------------------------------------------------------------------- /themes_old/ui/option3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/themes_old/ui/option3.png -------------------------------------------------------------------------------- /themes_old/ui/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/themes_old/ui/plus.png -------------------------------------------------------------------------------- /themes_old/ui/progressbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/themes_old/ui/progressbar.png -------------------------------------------------------------------------------- /themes_old/ui/shadow-in-alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/themes_old/ui/shadow-in-alt.png -------------------------------------------------------------------------------- /themes_old/ui/shadow-in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/themes_old/ui/shadow-in.png -------------------------------------------------------------------------------- /themes_old/ui/shadow-null.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/themes_old/ui/shadow-null.png -------------------------------------------------------------------------------- /themes_old/ui/shadow-out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/themes_old/ui/shadow-out.png -------------------------------------------------------------------------------- /themes_old/ui/slider-h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/themes_old/ui/slider-h.png -------------------------------------------------------------------------------- /themes_old/ui/slider-v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/themes_old/ui/slider-v.png -------------------------------------------------------------------------------- /themes_old/ui/spin-up-normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/themes_old/ui/spin-up-normal.png -------------------------------------------------------------------------------- /themes_old/ui/spin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/themes_old/ui/spin.png -------------------------------------------------------------------------------- /themes_old/ui/toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/themes_old/ui/toolbar.png -------------------------------------------------------------------------------- /themes_old/ui/transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/themes_old/ui/transparent.png -------------------------------------------------------------------------------- /tools/bump_version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/tools/bump_version.sh -------------------------------------------------------------------------------- /tools/convert_gimp_curves: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/tools/convert_gimp_curves -------------------------------------------------------------------------------- /tools/invert_icons.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/tools/invert_icons.sh -------------------------------------------------------------------------------- /tools/pfconv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/tools/pfconv -------------------------------------------------------------------------------- /tools/po_update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/tools/po_update.sh -------------------------------------------------------------------------------- /tools/update_darktable.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/tools/update_darktable.sh -------------------------------------------------------------------------------- /tools/update_exiv2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/tools/update_exiv2.sh -------------------------------------------------------------------------------- /tools/update_gmic.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/tools/update_gmic.sh -------------------------------------------------------------------------------- /tools/update_lensfun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/tools/update_lensfun.sh -------------------------------------------------------------------------------- /tools/update_libvips.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/tools/update_libvips.sh -------------------------------------------------------------------------------- /tools/update_version_info.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aferrero2707/PhotoFlow/HEAD/tools/update_version_info.sh -------------------------------------------------------------------------------- /win/photoflow.rc: -------------------------------------------------------------------------------- 1 | 1 ICON "../data/pixmaps/phf_logo_128x128.ico" 2 | --------------------------------------------------------------------------------