Skip to content

Commit

Permalink
hue_sat files moved
Browse files Browse the repository at this point in the history
  • Loading branch information
jtomson committed Apr 16, 2024
1 parent a70cf9c commit f58250d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion plugins/pushd-dither
4 changes: 2 additions & 2 deletions processing/dither.go
Original file line number Diff line number Diff line change
Expand Up @@ -136,8 +136,8 @@ func shellOutDither(inFile string, po *options.ProcessingOptions) error {
}
if len(po.Dither.LUTFile) > 0 {
cmdArgs = append(cmdArgs, "--lut", fmt.Sprintf("lut_dither/%s.npy", po.Dither.LUTFile))
// the precomputed hue-sat, a speed optimization, is in the base dir
cmdArgs = append(cmdArgs, "--lut-hue-sat", fmt.Sprintf("%s.hue_sat", po.Dither.LUTFile))
// specifying the precomputed hue-sat file is a speed optimization
cmdArgs = append(cmdArgs, "--lut-hue-sat", fmt.Sprintf("lut_dither/%s.hue_sat", po.Dither.LUTFile))
}
if po.Dither.LUTBlue {
cmdArgs = append(cmdArgs, "--lut-blue")
Expand Down

0 comments on commit f58250d

Please sign in to comment.