tahoma2d/toonz/sources/stdfx/igs_hls_add.h

42 lines
1.6 KiB
C
Raw Normal View History

2016-05-17 03:04:11 +12:00
#pragma once
2016-03-19 06:57:51 +13:00
#ifndef igs_add_hls_h
#define igs_add_hls_h
#ifndef IGS_HLS_ADD_EXPORT
#define IGS_HLS_ADD_EXPORT
#endif
2016-06-15 18:43:10 +12:00
namespace igs {
namespace hls_add {
2016-03-19 06:57:51 +13:00
IGS_HLS_ADD_EXPORT void change(
float *image_array, const int height, const int width, const int channels,
const float *noi_image_array,
const float *ref, /* 豎ゅ繧狗判蜒上→蜷後§鬮倥€∝ケ・€…hannels謨ー */
const int xoffset, /* 0 INT_MIN ... INT_MAX */
const int yoffset, /* 0 INT_MIN ... INT_MAX */
const int from_rgba, /* 0 0(R),1(G),2(B),3(A) */
const double offset, /* 0.5 -1.0 ... 1.0 */
const double hue_scale, /* 0.0 -1.0 ... 1.0 */
const double lig_scale, /* 0.5 -1.0 ... 1.0 */
const double sat_scale, /* 0.0 -1.0 ... 1.0 */
const double alp_scale, /* 0.0 -1.0 ... 1.0 */
const bool add_blend_sw,
2016-06-15 18:43:10 +12:00
/* 効果(変化量)をアルファブレンドするか否かのスイッチ
add_blend_sw == true
RGBの変化量を調整する
= * (1 - alpha) +
使
add_blend_sw == false
RGBが変化する
= * (1 - alpha) + * alpha
使
*/
const bool cylindrical = true // colorspace shape: cylindrical or bicone
);
2016-03-19 06:57:51 +13:00
}
} // namespace igs
2016-03-19 06:57:51 +13:00
#endif /* !igs_add_hls_h */