Skip to content

Commit

Permalink
Bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
zeehio authored Sep 20, 2022
1 parent e877622 commit a2cfd4d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/encode.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1309,7 +1309,7 @@ SEXP encode_channel_native_c(SEXP codes, SEXP channel, SEXP value, SEXP space, S
case HSL: return encode_channel_native_impl<ColorSpace::Hsl>(codes, channel, value, op, white, na);
case HSB: return encode_channel_native_impl<ColorSpace::Hsb>(codes, channel, value, op, white, na);
case HSV: return encode_channel_native_impl<ColorSpace::Hsv>(codes, channel, value, op, white, na);
case LAB: return encode_channel_impl<ColorSpace::Lab>(codes, channel, value, op, white, na);
case LAB: return encode_channel_native_impl<ColorSpace::Lab>(codes, channel, value, op, white, na);
case HUNTERLAB: return encode_channel_native_impl<ColorSpace::HunterLab>(codes, channel, value, op, white, na);
case LCH: return encode_channel_native_impl<ColorSpace::Lch>(codes, channel, value, op, white, na);
case LUV: return encode_channel_native_impl<ColorSpace::Luv>(codes, channel, value, op, white, na);
Expand Down

0 comments on commit a2cfd4d

Please sign in to comment.