Replies: 1 comment
-
I personally just use |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
ImPlot currently supports 10 data types for all plot types --
float, double, ImS8, ImU8, ImS16, ImU16, ImS32, ImU32, ImS64, ImU64
. I suspect most folks have data that is of typefloat
,double
, orint
(and maybe an unsigned integral). So, I'm curious if anyone out there is using any of the other 5 on a regular basis.PS -- Don't worry, I'm not planning removal. Just considering placing the lesser used ones behind a
#ifdef IMPLOT_SUPPORT_ALL_TYPES
to cut down on compile time and size.Beta Was this translation helpful? Give feedback.
All reactions