ColorConvertHSVtoRGB and ColorConvertRGBtoHSV to manuals

This commit is contained in:
sonoro1234
2018-10-04 11:22:00 +02:00
parent 3d232c5369
commit 4a0e927c23
11 changed files with 58 additions and 31 deletions

View File

@@ -78,5 +78,9 @@ CIMGUI_API void ImGuiTextBuffer_appendf(struct ImGuiTextBuffer *buffer, const ch
CIMGUI_API void ImFontConfig_DefaultConstructor(ImFontConfig *config);
//for getting FLT_MAX in bindings
CIMGUI_API float igGET_FLT_MAX();
//not const args from & to *
CIMGUI_API void igColorConvertRGBtoHSV(float r,float g,float b,float *out_h,float *out_s,float *out_v);
CIMGUI_API void igColorConvertHSVtoRGB(float h,float s,float v,float *out_r,float *out_g,float *out_b);