Lines Matching defs:out_h
3650 NK_API void nk_colorf_hsva_f(float *out_h, float *out_s, float *out_v, float *out_a, struct nk_colorf in);
3676 NK_API void nk_color_hsv_i(int *out_h, int *out_s, int *out_v, struct nk_color);
3677 NK_API void nk_color_hsv_b(nk_byte *out_h, nk_byte *out_s, nk_byte *out_v, struct nk_color);
3680 NK_API void nk_color_hsv_f(float *out_h, float *out_s, float *out_v, struct nk_color);
3687 NK_API void nk_color_hsva_f(float *out_h, float *out_s, float *out_v, float *out_a, struct nk_color);
7737 nk_color_hsv_f(float *out_h, float *out_s, float *out_v, struct nk_color in)
7740 nk_color_hsva_f(out_h, out_s, out_v, &a, in);
7749 nk_colorf_hsva_f(float *out_h, float *out_s,
7763 *out_h = NK_ABS(K + (in.g - in.b)/(6.0f * chroma + 1e-20f));
7775 nk_color_hsva_f(float *out_h, float *out_s,
7780 nk_colorf_hsva_f(out_h, out_s, out_v, out_a, col);
7788 nk_color_hsva_i(int *out_h, int *out_s, int *out_v,
7793 *out_h = (nk_byte)(h * 255.0f);
7824 nk_color_hsv_i(int *out_h, int *out_s, int *out_v, struct nk_color in)
7827 nk_color_hsva_i(out_h, out_s, out_v, &a, in);
7830 nk_color_hsv_b(nk_byte *out_h, nk_byte *out_s, nk_byte *out_v, struct nk_color in)
7834 *out_h = (nk_byte)tmp[0];
12232 int out_w, int out_h, int out_stride, float scale_x, float scale_y,
12244 gbm.h = out_h;