Lines Matching defs:out_v
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);
7750 float *out_v, float *out_a, struct nk_colorf in)
7765 *out_v = in.r;
7776 float *out_v, float *out_a, struct nk_color in)
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,
7795 *out_v = (nk_byte)(v * 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)
7836 *out_v = (nk_byte)tmp[2];