Skip to content

Commit

Permalink
🔥 remove quick rgb to perceived lightness drawcall
Browse files Browse the repository at this point in the history
  • Loading branch information
slooi committed Sep 7, 2024
1 parent e06a971 commit f1204d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ new ClipboardFileListener(imgData => {
canvas.width = tempImg.width;
canvas.height = tempImg.height;

drawTransformedImage(c, tempImg, transformRGBToPerceivedLightnessQuick)
// drawTransformedImage(c, tempImg, transformRGBToPerceivedLightnessQuick)
drawTransformedImage(c, tempImg, () => { })
drawTransformedImage(c, tempImg, transformRGBToPerceivedLightness)
}
Expand Down

0 comments on commit f1204d1

Please sign in to comment.