-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathcimplot.cpp
3010 lines (3003 loc) · 123 KB
/
cimplot.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
//This file is automatically generated by generator.lua from https://github.com/cimgui/cimplot
//based on implot.h file version 0.17 from implot https://github.com/epezent/implot
//with implot_internal.h api
#include "./implot/implot.h"
#include "./implot/implot_internal.h"
#include "cimplot.h"
//ImPlotPoint getters manually wrapped for taking getters modifying ImPlotPoint*
ImPlotPoint_getter getter_funcX;
ImPlotPoint_getter getter_funcX2;
ImPlotPoint Wrapper(int idx, void* data)
{
ImPlotPoint pp;
getter_funcX(data, idx, &pp);
return pp;
}
ImPlotPoint Wrapper2(int idx, void* data)
{
ImPlotPoint pp;
getter_funcX2(data, idx, &pp);
return pp;
}
CIMGUI_API ImPlotPoint* ImPlotPoint_ImPlotPoint_Nil(void)
{
return IM_NEW(ImPlotPoint)();
}
CIMGUI_API void ImPlotPoint_destroy(ImPlotPoint* self)
{
IM_DELETE(self);
}
CIMGUI_API ImPlotPoint* ImPlotPoint_ImPlotPoint_double(double _x,double _y)
{
return IM_NEW(ImPlotPoint)(_x,_y);
}
CIMGUI_API ImPlotPoint* ImPlotPoint_ImPlotPoint_Vec2(const ImVec2 p)
{
return IM_NEW(ImPlotPoint)(p);
}
CIMGUI_API ImPlotRange* ImPlotRange_ImPlotRange_Nil(void)
{
return IM_NEW(ImPlotRange)();
}
CIMGUI_API void ImPlotRange_destroy(ImPlotRange* self)
{
IM_DELETE(self);
}
CIMGUI_API ImPlotRange* ImPlotRange_ImPlotRange_double(double _min,double _max)
{
return IM_NEW(ImPlotRange)(_min,_max);
}
CIMGUI_API bool ImPlotRange_Contains(ImPlotRange* self,double value)
{
return self->Contains(value);
}
CIMGUI_API double ImPlotRange_Size(ImPlotRange* self)
{
return self->Size();
}
CIMGUI_API double ImPlotRange_Clamp(ImPlotRange* self,double value)
{
return self->Clamp(value);
}
CIMGUI_API ImPlotRect* ImPlotRect_ImPlotRect_Nil(void)
{
return IM_NEW(ImPlotRect)();
}
CIMGUI_API void ImPlotRect_destroy(ImPlotRect* self)
{
IM_DELETE(self);
}
CIMGUI_API ImPlotRect* ImPlotRect_ImPlotRect_double(double x_min,double x_max,double y_min,double y_max)
{
return IM_NEW(ImPlotRect)(x_min,x_max,y_min,y_max);
}
CIMGUI_API bool ImPlotRect_Contains_PlotPoInt(ImPlotRect* self,const ImPlotPoint p)
{
return self->Contains(p);
}
CIMGUI_API bool ImPlotRect_Contains_double(ImPlotRect* self,double x,double y)
{
return self->Contains(x,y);
}
CIMGUI_API void ImPlotRect_Size(ImPlotPoint *pOut,ImPlotRect* self)
{
*pOut = self->Size();
}
CIMGUI_API void ImPlotRect_Clamp_PlotPoInt(ImPlotPoint *pOut,ImPlotRect* self,const ImPlotPoint p)
{
*pOut = self->Clamp(p);
}
CIMGUI_API void ImPlotRect_Clamp_double(ImPlotPoint *pOut,ImPlotRect* self,double x,double y)
{
*pOut = self->Clamp(x,y);
}
CIMGUI_API void ImPlotRect_Min(ImPlotPoint *pOut,ImPlotRect* self)
{
*pOut = self->Min();
}
CIMGUI_API void ImPlotRect_Max(ImPlotPoint *pOut,ImPlotRect* self)
{
*pOut = self->Max();
}
CIMGUI_API ImPlotStyle* ImPlotStyle_ImPlotStyle(void)
{
return IM_NEW(ImPlotStyle)();
}
CIMGUI_API void ImPlotStyle_destroy(ImPlotStyle* self)
{
IM_DELETE(self);
}
CIMGUI_API ImPlotInputMap* ImPlotInputMap_ImPlotInputMap(void)
{
return IM_NEW(ImPlotInputMap)();
}
CIMGUI_API void ImPlotInputMap_destroy(ImPlotInputMap* self)
{
IM_DELETE(self);
}
CIMGUI_API ImPlotContext* ImPlot_CreateContext()
{
return ImPlot::CreateContext();
}
CIMGUI_API void ImPlot_DestroyContext(ImPlotContext* ctx)
{
return ImPlot::DestroyContext(ctx);
}
CIMGUI_API ImPlotContext* ImPlot_GetCurrentContext()
{
return ImPlot::GetCurrentContext();
}
CIMGUI_API void ImPlot_SetCurrentContext(ImPlotContext* ctx)
{
return ImPlot::SetCurrentContext(ctx);
}
CIMGUI_API void ImPlot_SetImGuiContext(ImGuiContext* ctx)
{
return ImPlot::SetImGuiContext(ctx);
}
CIMGUI_API bool ImPlot_BeginPlot(const char* title_id,const ImVec2 size,ImPlotFlags flags)
{
return ImPlot::BeginPlot(title_id,size,flags);
}
CIMGUI_API void ImPlot_EndPlot()
{
return ImPlot::EndPlot();
}
CIMGUI_API bool ImPlot_BeginSubplots(const char* title_id,int rows,int cols,const ImVec2 size,ImPlotSubplotFlags flags,float* row_ratios,float* col_ratios)
{
return ImPlot::BeginSubplots(title_id,rows,cols,size,flags,row_ratios,col_ratios);
}
CIMGUI_API void ImPlot_EndSubplots()
{
return ImPlot::EndSubplots();
}
CIMGUI_API void ImPlot_SetupAxis(ImAxis axis,const char* label,ImPlotAxisFlags flags)
{
return ImPlot::SetupAxis(axis,label,flags);
}
CIMGUI_API void ImPlot_SetupAxisLimits(ImAxis axis,double v_min,double v_max,ImPlotCond cond)
{
return ImPlot::SetupAxisLimits(axis,v_min,v_max,cond);
}
CIMGUI_API void ImPlot_SetupAxisLinks(ImAxis axis,double* link_min,double* link_max)
{
return ImPlot::SetupAxisLinks(axis,link_min,link_max);
}
CIMGUI_API void ImPlot_SetupAxisFormat_Str(ImAxis axis,const char* fmt)
{
return ImPlot::SetupAxisFormat(axis,fmt);
}
CIMGUI_API void ImPlot_SetupAxisFormat_PlotFormatter(ImAxis axis,ImPlotFormatter formatter,void* data)
{
return ImPlot::SetupAxisFormat(axis,formatter,data);
}
CIMGUI_API void ImPlot_SetupAxisTicks_doublePtr(ImAxis axis,const double* values,int n_ticks,const char* const labels[],bool keep_default)
{
return ImPlot::SetupAxisTicks(axis,values,n_ticks,labels,keep_default);
}
CIMGUI_API void ImPlot_SetupAxisTicks_double(ImAxis axis,double v_min,double v_max,int n_ticks,const char* const labels[],bool keep_default)
{
return ImPlot::SetupAxisTicks(axis,v_min,v_max,n_ticks,labels,keep_default);
}
CIMGUI_API void ImPlot_SetupAxisScale_PlotScale(ImAxis axis,ImPlotScale scale)
{
return ImPlot::SetupAxisScale(axis,scale);
}
CIMGUI_API void ImPlot_SetupAxisScale_PlotTransform(ImAxis axis,ImPlotTransform forward,ImPlotTransform inverse,void* data)
{
return ImPlot::SetupAxisScale(axis,forward,inverse,data);
}
CIMGUI_API void ImPlot_SetupAxisLimitsConstraints(ImAxis axis,double v_min,double v_max)
{
return ImPlot::SetupAxisLimitsConstraints(axis,v_min,v_max);
}
CIMGUI_API void ImPlot_SetupAxisZoomConstraints(ImAxis axis,double z_min,double z_max)
{
return ImPlot::SetupAxisZoomConstraints(axis,z_min,z_max);
}
CIMGUI_API void ImPlot_SetupAxes(const char* x_label,const char* y_label,ImPlotAxisFlags x_flags,ImPlotAxisFlags y_flags)
{
return ImPlot::SetupAxes(x_label,y_label,x_flags,y_flags);
}
CIMGUI_API void ImPlot_SetupAxesLimits(double x_min,double x_max,double y_min,double y_max,ImPlotCond cond)
{
return ImPlot::SetupAxesLimits(x_min,x_max,y_min,y_max,cond);
}
CIMGUI_API void ImPlot_SetupLegend(ImPlotLocation location,ImPlotLegendFlags flags)
{
return ImPlot::SetupLegend(location,flags);
}
CIMGUI_API void ImPlot_SetupMouseText(ImPlotLocation location,ImPlotMouseTextFlags flags)
{
return ImPlot::SetupMouseText(location,flags);
}
CIMGUI_API void ImPlot_SetupFinish()
{
return ImPlot::SetupFinish();
}
CIMGUI_API void ImPlot_SetNextAxisLimits(ImAxis axis,double v_min,double v_max,ImPlotCond cond)
{
return ImPlot::SetNextAxisLimits(axis,v_min,v_max,cond);
}
CIMGUI_API void ImPlot_SetNextAxisLinks(ImAxis axis,double* link_min,double* link_max)
{
return ImPlot::SetNextAxisLinks(axis,link_min,link_max);
}
CIMGUI_API void ImPlot_SetNextAxisToFit(ImAxis axis)
{
return ImPlot::SetNextAxisToFit(axis);
}
CIMGUI_API void ImPlot_SetNextAxesLimits(double x_min,double x_max,double y_min,double y_max,ImPlotCond cond)
{
return ImPlot::SetNextAxesLimits(x_min,x_max,y_min,y_max,cond);
}
CIMGUI_API void ImPlot_SetNextAxesToFit()
{
return ImPlot::SetNextAxesToFit();
}
CIMGUI_API void ImPlot_PlotLine_FloatPtrInt(const char* label_id,const float* values,int count,double xscale,double xstart,ImPlotLineFlags flags,int offset,int stride)
{
return ImPlot::PlotLine(label_id,values,count,xscale,xstart,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotLine_doublePtrInt(const char* label_id,const double* values,int count,double xscale,double xstart,ImPlotLineFlags flags,int offset,int stride)
{
return ImPlot::PlotLine(label_id,values,count,xscale,xstart,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotLine_S8PtrInt(const char* label_id,const ImS8* values,int count,double xscale,double xstart,ImPlotLineFlags flags,int offset,int stride)
{
return ImPlot::PlotLine(label_id,values,count,xscale,xstart,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotLine_U8PtrInt(const char* label_id,const ImU8* values,int count,double xscale,double xstart,ImPlotLineFlags flags,int offset,int stride)
{
return ImPlot::PlotLine(label_id,values,count,xscale,xstart,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotLine_S16PtrInt(const char* label_id,const ImS16* values,int count,double xscale,double xstart,ImPlotLineFlags flags,int offset,int stride)
{
return ImPlot::PlotLine(label_id,values,count,xscale,xstart,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotLine_U16PtrInt(const char* label_id,const ImU16* values,int count,double xscale,double xstart,ImPlotLineFlags flags,int offset,int stride)
{
return ImPlot::PlotLine(label_id,values,count,xscale,xstart,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotLine_S32PtrInt(const char* label_id,const ImS32* values,int count,double xscale,double xstart,ImPlotLineFlags flags,int offset,int stride)
{
return ImPlot::PlotLine(label_id,values,count,xscale,xstart,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotLine_U32PtrInt(const char* label_id,const ImU32* values,int count,double xscale,double xstart,ImPlotLineFlags flags,int offset,int stride)
{
return ImPlot::PlotLine(label_id,values,count,xscale,xstart,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotLine_S64PtrInt(const char* label_id,const ImS64* values,int count,double xscale,double xstart,ImPlotLineFlags flags,int offset,int stride)
{
return ImPlot::PlotLine(label_id,values,count,xscale,xstart,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotLine_U64PtrInt(const char* label_id,const ImU64* values,int count,double xscale,double xstart,ImPlotLineFlags flags,int offset,int stride)
{
return ImPlot::PlotLine(label_id,values,count,xscale,xstart,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotLine_FloatPtrFloatPtr(const char* label_id,const float* xs,const float* ys,int count,ImPlotLineFlags flags,int offset,int stride)
{
return ImPlot::PlotLine(label_id,xs,ys,count,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotLine_doublePtrdoublePtr(const char* label_id,const double* xs,const double* ys,int count,ImPlotLineFlags flags,int offset,int stride)
{
return ImPlot::PlotLine(label_id,xs,ys,count,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotLine_S8PtrS8Ptr(const char* label_id,const ImS8* xs,const ImS8* ys,int count,ImPlotLineFlags flags,int offset,int stride)
{
return ImPlot::PlotLine(label_id,xs,ys,count,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotLine_U8PtrU8Ptr(const char* label_id,const ImU8* xs,const ImU8* ys,int count,ImPlotLineFlags flags,int offset,int stride)
{
return ImPlot::PlotLine(label_id,xs,ys,count,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotLine_S16PtrS16Ptr(const char* label_id,const ImS16* xs,const ImS16* ys,int count,ImPlotLineFlags flags,int offset,int stride)
{
return ImPlot::PlotLine(label_id,xs,ys,count,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotLine_U16PtrU16Ptr(const char* label_id,const ImU16* xs,const ImU16* ys,int count,ImPlotLineFlags flags,int offset,int stride)
{
return ImPlot::PlotLine(label_id,xs,ys,count,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotLine_S32PtrS32Ptr(const char* label_id,const ImS32* xs,const ImS32* ys,int count,ImPlotLineFlags flags,int offset,int stride)
{
return ImPlot::PlotLine(label_id,xs,ys,count,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotLine_U32PtrU32Ptr(const char* label_id,const ImU32* xs,const ImU32* ys,int count,ImPlotLineFlags flags,int offset,int stride)
{
return ImPlot::PlotLine(label_id,xs,ys,count,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotLine_S64PtrS64Ptr(const char* label_id,const ImS64* xs,const ImS64* ys,int count,ImPlotLineFlags flags,int offset,int stride)
{
return ImPlot::PlotLine(label_id,xs,ys,count,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotLine_U64PtrU64Ptr(const char* label_id,const ImU64* xs,const ImU64* ys,int count,ImPlotLineFlags flags,int offset,int stride)
{
return ImPlot::PlotLine(label_id,xs,ys,count,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotLineG(const char* label_id,ImPlotPoint_getter getter,void* data,int count,ImPlotLineFlags flags)
{
getter_funcX = getter;
ImPlot::PlotLineG(label_id,Wrapper,data,count,flags);
}
CIMGUI_API void ImPlot_PlotScatter_FloatPtrInt(const char* label_id,const float* values,int count,double xscale,double xstart,ImPlotScatterFlags flags,int offset,int stride)
{
return ImPlot::PlotScatter(label_id,values,count,xscale,xstart,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotScatter_doublePtrInt(const char* label_id,const double* values,int count,double xscale,double xstart,ImPlotScatterFlags flags,int offset,int stride)
{
return ImPlot::PlotScatter(label_id,values,count,xscale,xstart,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotScatter_S8PtrInt(const char* label_id,const ImS8* values,int count,double xscale,double xstart,ImPlotScatterFlags flags,int offset,int stride)
{
return ImPlot::PlotScatter(label_id,values,count,xscale,xstart,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotScatter_U8PtrInt(const char* label_id,const ImU8* values,int count,double xscale,double xstart,ImPlotScatterFlags flags,int offset,int stride)
{
return ImPlot::PlotScatter(label_id,values,count,xscale,xstart,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotScatter_S16PtrInt(const char* label_id,const ImS16* values,int count,double xscale,double xstart,ImPlotScatterFlags flags,int offset,int stride)
{
return ImPlot::PlotScatter(label_id,values,count,xscale,xstart,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotScatter_U16PtrInt(const char* label_id,const ImU16* values,int count,double xscale,double xstart,ImPlotScatterFlags flags,int offset,int stride)
{
return ImPlot::PlotScatter(label_id,values,count,xscale,xstart,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotScatter_S32PtrInt(const char* label_id,const ImS32* values,int count,double xscale,double xstart,ImPlotScatterFlags flags,int offset,int stride)
{
return ImPlot::PlotScatter(label_id,values,count,xscale,xstart,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotScatter_U32PtrInt(const char* label_id,const ImU32* values,int count,double xscale,double xstart,ImPlotScatterFlags flags,int offset,int stride)
{
return ImPlot::PlotScatter(label_id,values,count,xscale,xstart,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotScatter_S64PtrInt(const char* label_id,const ImS64* values,int count,double xscale,double xstart,ImPlotScatterFlags flags,int offset,int stride)
{
return ImPlot::PlotScatter(label_id,values,count,xscale,xstart,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotScatter_U64PtrInt(const char* label_id,const ImU64* values,int count,double xscale,double xstart,ImPlotScatterFlags flags,int offset,int stride)
{
return ImPlot::PlotScatter(label_id,values,count,xscale,xstart,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotScatter_FloatPtrFloatPtr(const char* label_id,const float* xs,const float* ys,int count,ImPlotScatterFlags flags,int offset,int stride)
{
return ImPlot::PlotScatter(label_id,xs,ys,count,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotScatter_doublePtrdoublePtr(const char* label_id,const double* xs,const double* ys,int count,ImPlotScatterFlags flags,int offset,int stride)
{
return ImPlot::PlotScatter(label_id,xs,ys,count,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotScatter_S8PtrS8Ptr(const char* label_id,const ImS8* xs,const ImS8* ys,int count,ImPlotScatterFlags flags,int offset,int stride)
{
return ImPlot::PlotScatter(label_id,xs,ys,count,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotScatter_U8PtrU8Ptr(const char* label_id,const ImU8* xs,const ImU8* ys,int count,ImPlotScatterFlags flags,int offset,int stride)
{
return ImPlot::PlotScatter(label_id,xs,ys,count,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotScatter_S16PtrS16Ptr(const char* label_id,const ImS16* xs,const ImS16* ys,int count,ImPlotScatterFlags flags,int offset,int stride)
{
return ImPlot::PlotScatter(label_id,xs,ys,count,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotScatter_U16PtrU16Ptr(const char* label_id,const ImU16* xs,const ImU16* ys,int count,ImPlotScatterFlags flags,int offset,int stride)
{
return ImPlot::PlotScatter(label_id,xs,ys,count,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotScatter_S32PtrS32Ptr(const char* label_id,const ImS32* xs,const ImS32* ys,int count,ImPlotScatterFlags flags,int offset,int stride)
{
return ImPlot::PlotScatter(label_id,xs,ys,count,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotScatter_U32PtrU32Ptr(const char* label_id,const ImU32* xs,const ImU32* ys,int count,ImPlotScatterFlags flags,int offset,int stride)
{
return ImPlot::PlotScatter(label_id,xs,ys,count,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotScatter_S64PtrS64Ptr(const char* label_id,const ImS64* xs,const ImS64* ys,int count,ImPlotScatterFlags flags,int offset,int stride)
{
return ImPlot::PlotScatter(label_id,xs,ys,count,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotScatter_U64PtrU64Ptr(const char* label_id,const ImU64* xs,const ImU64* ys,int count,ImPlotScatterFlags flags,int offset,int stride)
{
return ImPlot::PlotScatter(label_id,xs,ys,count,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotScatterG(const char* label_id,ImPlotPoint_getter getter,void* data,int count,ImPlotScatterFlags flags)
{
getter_funcX = getter;
ImPlot::PlotScatterG(label_id,Wrapper,data,count,flags);
}
CIMGUI_API void ImPlot_PlotStairs_FloatPtrInt(const char* label_id,const float* values,int count,double xscale,double xstart,ImPlotStairsFlags flags,int offset,int stride)
{
return ImPlot::PlotStairs(label_id,values,count,xscale,xstart,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotStairs_doublePtrInt(const char* label_id,const double* values,int count,double xscale,double xstart,ImPlotStairsFlags flags,int offset,int stride)
{
return ImPlot::PlotStairs(label_id,values,count,xscale,xstart,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotStairs_S8PtrInt(const char* label_id,const ImS8* values,int count,double xscale,double xstart,ImPlotStairsFlags flags,int offset,int stride)
{
return ImPlot::PlotStairs(label_id,values,count,xscale,xstart,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotStairs_U8PtrInt(const char* label_id,const ImU8* values,int count,double xscale,double xstart,ImPlotStairsFlags flags,int offset,int stride)
{
return ImPlot::PlotStairs(label_id,values,count,xscale,xstart,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotStairs_S16PtrInt(const char* label_id,const ImS16* values,int count,double xscale,double xstart,ImPlotStairsFlags flags,int offset,int stride)
{
return ImPlot::PlotStairs(label_id,values,count,xscale,xstart,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotStairs_U16PtrInt(const char* label_id,const ImU16* values,int count,double xscale,double xstart,ImPlotStairsFlags flags,int offset,int stride)
{
return ImPlot::PlotStairs(label_id,values,count,xscale,xstart,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotStairs_S32PtrInt(const char* label_id,const ImS32* values,int count,double xscale,double xstart,ImPlotStairsFlags flags,int offset,int stride)
{
return ImPlot::PlotStairs(label_id,values,count,xscale,xstart,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotStairs_U32PtrInt(const char* label_id,const ImU32* values,int count,double xscale,double xstart,ImPlotStairsFlags flags,int offset,int stride)
{
return ImPlot::PlotStairs(label_id,values,count,xscale,xstart,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotStairs_S64PtrInt(const char* label_id,const ImS64* values,int count,double xscale,double xstart,ImPlotStairsFlags flags,int offset,int stride)
{
return ImPlot::PlotStairs(label_id,values,count,xscale,xstart,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotStairs_U64PtrInt(const char* label_id,const ImU64* values,int count,double xscale,double xstart,ImPlotStairsFlags flags,int offset,int stride)
{
return ImPlot::PlotStairs(label_id,values,count,xscale,xstart,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotStairs_FloatPtrFloatPtr(const char* label_id,const float* xs,const float* ys,int count,ImPlotStairsFlags flags,int offset,int stride)
{
return ImPlot::PlotStairs(label_id,xs,ys,count,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotStairs_doublePtrdoublePtr(const char* label_id,const double* xs,const double* ys,int count,ImPlotStairsFlags flags,int offset,int stride)
{
return ImPlot::PlotStairs(label_id,xs,ys,count,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotStairs_S8PtrS8Ptr(const char* label_id,const ImS8* xs,const ImS8* ys,int count,ImPlotStairsFlags flags,int offset,int stride)
{
return ImPlot::PlotStairs(label_id,xs,ys,count,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotStairs_U8PtrU8Ptr(const char* label_id,const ImU8* xs,const ImU8* ys,int count,ImPlotStairsFlags flags,int offset,int stride)
{
return ImPlot::PlotStairs(label_id,xs,ys,count,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotStairs_S16PtrS16Ptr(const char* label_id,const ImS16* xs,const ImS16* ys,int count,ImPlotStairsFlags flags,int offset,int stride)
{
return ImPlot::PlotStairs(label_id,xs,ys,count,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotStairs_U16PtrU16Ptr(const char* label_id,const ImU16* xs,const ImU16* ys,int count,ImPlotStairsFlags flags,int offset,int stride)
{
return ImPlot::PlotStairs(label_id,xs,ys,count,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotStairs_S32PtrS32Ptr(const char* label_id,const ImS32* xs,const ImS32* ys,int count,ImPlotStairsFlags flags,int offset,int stride)
{
return ImPlot::PlotStairs(label_id,xs,ys,count,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotStairs_U32PtrU32Ptr(const char* label_id,const ImU32* xs,const ImU32* ys,int count,ImPlotStairsFlags flags,int offset,int stride)
{
return ImPlot::PlotStairs(label_id,xs,ys,count,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotStairs_S64PtrS64Ptr(const char* label_id,const ImS64* xs,const ImS64* ys,int count,ImPlotStairsFlags flags,int offset,int stride)
{
return ImPlot::PlotStairs(label_id,xs,ys,count,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotStairs_U64PtrU64Ptr(const char* label_id,const ImU64* xs,const ImU64* ys,int count,ImPlotStairsFlags flags,int offset,int stride)
{
return ImPlot::PlotStairs(label_id,xs,ys,count,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotStairsG(const char* label_id,ImPlotPoint_getter getter,void* data,int count,ImPlotStairsFlags flags)
{
getter_funcX = getter;
ImPlot::PlotStairsG(label_id,Wrapper,data,count,flags);
}
CIMGUI_API void ImPlot_PlotShaded_FloatPtrInt(const char* label_id,const float* values,int count,double yref,double xscale,double xstart,ImPlotShadedFlags flags,int offset,int stride)
{
return ImPlot::PlotShaded(label_id,values,count,yref,xscale,xstart,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotShaded_doublePtrInt(const char* label_id,const double* values,int count,double yref,double xscale,double xstart,ImPlotShadedFlags flags,int offset,int stride)
{
return ImPlot::PlotShaded(label_id,values,count,yref,xscale,xstart,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotShaded_S8PtrInt(const char* label_id,const ImS8* values,int count,double yref,double xscale,double xstart,ImPlotShadedFlags flags,int offset,int stride)
{
return ImPlot::PlotShaded(label_id,values,count,yref,xscale,xstart,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotShaded_U8PtrInt(const char* label_id,const ImU8* values,int count,double yref,double xscale,double xstart,ImPlotShadedFlags flags,int offset,int stride)
{
return ImPlot::PlotShaded(label_id,values,count,yref,xscale,xstart,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotShaded_S16PtrInt(const char* label_id,const ImS16* values,int count,double yref,double xscale,double xstart,ImPlotShadedFlags flags,int offset,int stride)
{
return ImPlot::PlotShaded(label_id,values,count,yref,xscale,xstart,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotShaded_U16PtrInt(const char* label_id,const ImU16* values,int count,double yref,double xscale,double xstart,ImPlotShadedFlags flags,int offset,int stride)
{
return ImPlot::PlotShaded(label_id,values,count,yref,xscale,xstart,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotShaded_S32PtrInt(const char* label_id,const ImS32* values,int count,double yref,double xscale,double xstart,ImPlotShadedFlags flags,int offset,int stride)
{
return ImPlot::PlotShaded(label_id,values,count,yref,xscale,xstart,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotShaded_U32PtrInt(const char* label_id,const ImU32* values,int count,double yref,double xscale,double xstart,ImPlotShadedFlags flags,int offset,int stride)
{
return ImPlot::PlotShaded(label_id,values,count,yref,xscale,xstart,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotShaded_S64PtrInt(const char* label_id,const ImS64* values,int count,double yref,double xscale,double xstart,ImPlotShadedFlags flags,int offset,int stride)
{
return ImPlot::PlotShaded(label_id,values,count,yref,xscale,xstart,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotShaded_U64PtrInt(const char* label_id,const ImU64* values,int count,double yref,double xscale,double xstart,ImPlotShadedFlags flags,int offset,int stride)
{
return ImPlot::PlotShaded(label_id,values,count,yref,xscale,xstart,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotShaded_FloatPtrFloatPtrInt(const char* label_id,const float* xs,const float* ys,int count,double yref,ImPlotShadedFlags flags,int offset,int stride)
{
return ImPlot::PlotShaded(label_id,xs,ys,count,yref,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotShaded_doublePtrdoublePtrInt(const char* label_id,const double* xs,const double* ys,int count,double yref,ImPlotShadedFlags flags,int offset,int stride)
{
return ImPlot::PlotShaded(label_id,xs,ys,count,yref,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotShaded_S8PtrS8PtrInt(const char* label_id,const ImS8* xs,const ImS8* ys,int count,double yref,ImPlotShadedFlags flags,int offset,int stride)
{
return ImPlot::PlotShaded(label_id,xs,ys,count,yref,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotShaded_U8PtrU8PtrInt(const char* label_id,const ImU8* xs,const ImU8* ys,int count,double yref,ImPlotShadedFlags flags,int offset,int stride)
{
return ImPlot::PlotShaded(label_id,xs,ys,count,yref,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotShaded_S16PtrS16PtrInt(const char* label_id,const ImS16* xs,const ImS16* ys,int count,double yref,ImPlotShadedFlags flags,int offset,int stride)
{
return ImPlot::PlotShaded(label_id,xs,ys,count,yref,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotShaded_U16PtrU16PtrInt(const char* label_id,const ImU16* xs,const ImU16* ys,int count,double yref,ImPlotShadedFlags flags,int offset,int stride)
{
return ImPlot::PlotShaded(label_id,xs,ys,count,yref,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotShaded_S32PtrS32PtrInt(const char* label_id,const ImS32* xs,const ImS32* ys,int count,double yref,ImPlotShadedFlags flags,int offset,int stride)
{
return ImPlot::PlotShaded(label_id,xs,ys,count,yref,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotShaded_U32PtrU32PtrInt(const char* label_id,const ImU32* xs,const ImU32* ys,int count,double yref,ImPlotShadedFlags flags,int offset,int stride)
{
return ImPlot::PlotShaded(label_id,xs,ys,count,yref,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotShaded_S64PtrS64PtrInt(const char* label_id,const ImS64* xs,const ImS64* ys,int count,double yref,ImPlotShadedFlags flags,int offset,int stride)
{
return ImPlot::PlotShaded(label_id,xs,ys,count,yref,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotShaded_U64PtrU64PtrInt(const char* label_id,const ImU64* xs,const ImU64* ys,int count,double yref,ImPlotShadedFlags flags,int offset,int stride)
{
return ImPlot::PlotShaded(label_id,xs,ys,count,yref,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotShaded_FloatPtrFloatPtrFloatPtr(const char* label_id,const float* xs,const float* ys1,const float* ys2,int count,ImPlotShadedFlags flags,int offset,int stride)
{
return ImPlot::PlotShaded(label_id,xs,ys1,ys2,count,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotShaded_doublePtrdoublePtrdoublePtr(const char* label_id,const double* xs,const double* ys1,const double* ys2,int count,ImPlotShadedFlags flags,int offset,int stride)
{
return ImPlot::PlotShaded(label_id,xs,ys1,ys2,count,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotShaded_S8PtrS8PtrS8Ptr(const char* label_id,const ImS8* xs,const ImS8* ys1,const ImS8* ys2,int count,ImPlotShadedFlags flags,int offset,int stride)
{
return ImPlot::PlotShaded(label_id,xs,ys1,ys2,count,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotShaded_U8PtrU8PtrU8Ptr(const char* label_id,const ImU8* xs,const ImU8* ys1,const ImU8* ys2,int count,ImPlotShadedFlags flags,int offset,int stride)
{
return ImPlot::PlotShaded(label_id,xs,ys1,ys2,count,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotShaded_S16PtrS16PtrS16Ptr(const char* label_id,const ImS16* xs,const ImS16* ys1,const ImS16* ys2,int count,ImPlotShadedFlags flags,int offset,int stride)
{
return ImPlot::PlotShaded(label_id,xs,ys1,ys2,count,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotShaded_U16PtrU16PtrU16Ptr(const char* label_id,const ImU16* xs,const ImU16* ys1,const ImU16* ys2,int count,ImPlotShadedFlags flags,int offset,int stride)
{
return ImPlot::PlotShaded(label_id,xs,ys1,ys2,count,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotShaded_S32PtrS32PtrS32Ptr(const char* label_id,const ImS32* xs,const ImS32* ys1,const ImS32* ys2,int count,ImPlotShadedFlags flags,int offset,int stride)
{
return ImPlot::PlotShaded(label_id,xs,ys1,ys2,count,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotShaded_U32PtrU32PtrU32Ptr(const char* label_id,const ImU32* xs,const ImU32* ys1,const ImU32* ys2,int count,ImPlotShadedFlags flags,int offset,int stride)
{
return ImPlot::PlotShaded(label_id,xs,ys1,ys2,count,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotShaded_S64PtrS64PtrS64Ptr(const char* label_id,const ImS64* xs,const ImS64* ys1,const ImS64* ys2,int count,ImPlotShadedFlags flags,int offset,int stride)
{
return ImPlot::PlotShaded(label_id,xs,ys1,ys2,count,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotShaded_U64PtrU64PtrU64Ptr(const char* label_id,const ImU64* xs,const ImU64* ys1,const ImU64* ys2,int count,ImPlotShadedFlags flags,int offset,int stride)
{
return ImPlot::PlotShaded(label_id,xs,ys1,ys2,count,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotShadedG(const char* label_id,ImPlotPoint_getter getter1,void* data1,ImPlotPoint_getter getter2,void* data2,int count,ImPlotShadedFlags flags)
{
getter_funcX = getter1;
getter_funcX2 = getter2;
ImPlot::PlotShadedG(label_id,Wrapper,data1,Wrapper2,data2,count,flags);
}
CIMGUI_API void ImPlot_PlotBars_FloatPtrInt(const char* label_id,const float* values,int count,double bar_size,double shift,ImPlotBarsFlags flags,int offset,int stride)
{
return ImPlot::PlotBars(label_id,values,count,bar_size,shift,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotBars_doublePtrInt(const char* label_id,const double* values,int count,double bar_size,double shift,ImPlotBarsFlags flags,int offset,int stride)
{
return ImPlot::PlotBars(label_id,values,count,bar_size,shift,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotBars_S8PtrInt(const char* label_id,const ImS8* values,int count,double bar_size,double shift,ImPlotBarsFlags flags,int offset,int stride)
{
return ImPlot::PlotBars(label_id,values,count,bar_size,shift,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotBars_U8PtrInt(const char* label_id,const ImU8* values,int count,double bar_size,double shift,ImPlotBarsFlags flags,int offset,int stride)
{
return ImPlot::PlotBars(label_id,values,count,bar_size,shift,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotBars_S16PtrInt(const char* label_id,const ImS16* values,int count,double bar_size,double shift,ImPlotBarsFlags flags,int offset,int stride)
{
return ImPlot::PlotBars(label_id,values,count,bar_size,shift,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotBars_U16PtrInt(const char* label_id,const ImU16* values,int count,double bar_size,double shift,ImPlotBarsFlags flags,int offset,int stride)
{
return ImPlot::PlotBars(label_id,values,count,bar_size,shift,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotBars_S32PtrInt(const char* label_id,const ImS32* values,int count,double bar_size,double shift,ImPlotBarsFlags flags,int offset,int stride)
{
return ImPlot::PlotBars(label_id,values,count,bar_size,shift,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotBars_U32PtrInt(const char* label_id,const ImU32* values,int count,double bar_size,double shift,ImPlotBarsFlags flags,int offset,int stride)
{
return ImPlot::PlotBars(label_id,values,count,bar_size,shift,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotBars_S64PtrInt(const char* label_id,const ImS64* values,int count,double bar_size,double shift,ImPlotBarsFlags flags,int offset,int stride)
{
return ImPlot::PlotBars(label_id,values,count,bar_size,shift,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotBars_U64PtrInt(const char* label_id,const ImU64* values,int count,double bar_size,double shift,ImPlotBarsFlags flags,int offset,int stride)
{
return ImPlot::PlotBars(label_id,values,count,bar_size,shift,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotBars_FloatPtrFloatPtr(const char* label_id,const float* xs,const float* ys,int count,double bar_size,ImPlotBarsFlags flags,int offset,int stride)
{
return ImPlot::PlotBars(label_id,xs,ys,count,bar_size,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotBars_doublePtrdoublePtr(const char* label_id,const double* xs,const double* ys,int count,double bar_size,ImPlotBarsFlags flags,int offset,int stride)
{
return ImPlot::PlotBars(label_id,xs,ys,count,bar_size,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotBars_S8PtrS8Ptr(const char* label_id,const ImS8* xs,const ImS8* ys,int count,double bar_size,ImPlotBarsFlags flags,int offset,int stride)
{
return ImPlot::PlotBars(label_id,xs,ys,count,bar_size,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotBars_U8PtrU8Ptr(const char* label_id,const ImU8* xs,const ImU8* ys,int count,double bar_size,ImPlotBarsFlags flags,int offset,int stride)
{
return ImPlot::PlotBars(label_id,xs,ys,count,bar_size,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotBars_S16PtrS16Ptr(const char* label_id,const ImS16* xs,const ImS16* ys,int count,double bar_size,ImPlotBarsFlags flags,int offset,int stride)
{
return ImPlot::PlotBars(label_id,xs,ys,count,bar_size,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotBars_U16PtrU16Ptr(const char* label_id,const ImU16* xs,const ImU16* ys,int count,double bar_size,ImPlotBarsFlags flags,int offset,int stride)
{
return ImPlot::PlotBars(label_id,xs,ys,count,bar_size,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotBars_S32PtrS32Ptr(const char* label_id,const ImS32* xs,const ImS32* ys,int count,double bar_size,ImPlotBarsFlags flags,int offset,int stride)
{
return ImPlot::PlotBars(label_id,xs,ys,count,bar_size,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotBars_U32PtrU32Ptr(const char* label_id,const ImU32* xs,const ImU32* ys,int count,double bar_size,ImPlotBarsFlags flags,int offset,int stride)
{
return ImPlot::PlotBars(label_id,xs,ys,count,bar_size,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotBars_S64PtrS64Ptr(const char* label_id,const ImS64* xs,const ImS64* ys,int count,double bar_size,ImPlotBarsFlags flags,int offset,int stride)
{
return ImPlot::PlotBars(label_id,xs,ys,count,bar_size,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotBars_U64PtrU64Ptr(const char* label_id,const ImU64* xs,const ImU64* ys,int count,double bar_size,ImPlotBarsFlags flags,int offset,int stride)
{
return ImPlot::PlotBars(label_id,xs,ys,count,bar_size,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotBarsG(const char* label_id,ImPlotPoint_getter getter,void* data,int count,double bar_size,ImPlotBarsFlags flags)
{
getter_funcX = getter;
ImPlot::PlotBarsG(label_id,Wrapper,data,count,bar_size,flags);
}
CIMGUI_API void ImPlot_PlotBarGroups_FloatPtr(const char* const label_ids[],const float* values,int item_count,int group_count,double group_size,double shift,ImPlotBarGroupsFlags flags)
{
return ImPlot::PlotBarGroups(label_ids,values,item_count,group_count,group_size,shift,flags);
}
CIMGUI_API void ImPlot_PlotBarGroups_doublePtr(const char* const label_ids[],const double* values,int item_count,int group_count,double group_size,double shift,ImPlotBarGroupsFlags flags)
{
return ImPlot::PlotBarGroups(label_ids,values,item_count,group_count,group_size,shift,flags);
}
CIMGUI_API void ImPlot_PlotBarGroups_S8Ptr(const char* const label_ids[],const ImS8* values,int item_count,int group_count,double group_size,double shift,ImPlotBarGroupsFlags flags)
{
return ImPlot::PlotBarGroups(label_ids,values,item_count,group_count,group_size,shift,flags);
}
CIMGUI_API void ImPlot_PlotBarGroups_U8Ptr(const char* const label_ids[],const ImU8* values,int item_count,int group_count,double group_size,double shift,ImPlotBarGroupsFlags flags)
{
return ImPlot::PlotBarGroups(label_ids,values,item_count,group_count,group_size,shift,flags);
}
CIMGUI_API void ImPlot_PlotBarGroups_S16Ptr(const char* const label_ids[],const ImS16* values,int item_count,int group_count,double group_size,double shift,ImPlotBarGroupsFlags flags)
{
return ImPlot::PlotBarGroups(label_ids,values,item_count,group_count,group_size,shift,flags);
}
CIMGUI_API void ImPlot_PlotBarGroups_U16Ptr(const char* const label_ids[],const ImU16* values,int item_count,int group_count,double group_size,double shift,ImPlotBarGroupsFlags flags)
{
return ImPlot::PlotBarGroups(label_ids,values,item_count,group_count,group_size,shift,flags);
}
CIMGUI_API void ImPlot_PlotBarGroups_S32Ptr(const char* const label_ids[],const ImS32* values,int item_count,int group_count,double group_size,double shift,ImPlotBarGroupsFlags flags)
{
return ImPlot::PlotBarGroups(label_ids,values,item_count,group_count,group_size,shift,flags);
}
CIMGUI_API void ImPlot_PlotBarGroups_U32Ptr(const char* const label_ids[],const ImU32* values,int item_count,int group_count,double group_size,double shift,ImPlotBarGroupsFlags flags)
{
return ImPlot::PlotBarGroups(label_ids,values,item_count,group_count,group_size,shift,flags);
}
CIMGUI_API void ImPlot_PlotBarGroups_S64Ptr(const char* const label_ids[],const ImS64* values,int item_count,int group_count,double group_size,double shift,ImPlotBarGroupsFlags flags)
{
return ImPlot::PlotBarGroups(label_ids,values,item_count,group_count,group_size,shift,flags);
}
CIMGUI_API void ImPlot_PlotBarGroups_U64Ptr(const char* const label_ids[],const ImU64* values,int item_count,int group_count,double group_size,double shift,ImPlotBarGroupsFlags flags)
{
return ImPlot::PlotBarGroups(label_ids,values,item_count,group_count,group_size,shift,flags);
}
CIMGUI_API void ImPlot_PlotErrorBars_FloatPtrFloatPtrFloatPtrInt(const char* label_id,const float* xs,const float* ys,const float* err,int count,ImPlotErrorBarsFlags flags,int offset,int stride)
{
return ImPlot::PlotErrorBars(label_id,xs,ys,err,count,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotErrorBars_doublePtrdoublePtrdoublePtrInt(const char* label_id,const double* xs,const double* ys,const double* err,int count,ImPlotErrorBarsFlags flags,int offset,int stride)
{
return ImPlot::PlotErrorBars(label_id,xs,ys,err,count,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotErrorBars_S8PtrS8PtrS8PtrInt(const char* label_id,const ImS8* xs,const ImS8* ys,const ImS8* err,int count,ImPlotErrorBarsFlags flags,int offset,int stride)
{
return ImPlot::PlotErrorBars(label_id,xs,ys,err,count,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotErrorBars_U8PtrU8PtrU8PtrInt(const char* label_id,const ImU8* xs,const ImU8* ys,const ImU8* err,int count,ImPlotErrorBarsFlags flags,int offset,int stride)
{
return ImPlot::PlotErrorBars(label_id,xs,ys,err,count,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotErrorBars_S16PtrS16PtrS16PtrInt(const char* label_id,const ImS16* xs,const ImS16* ys,const ImS16* err,int count,ImPlotErrorBarsFlags flags,int offset,int stride)
{
return ImPlot::PlotErrorBars(label_id,xs,ys,err,count,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotErrorBars_U16PtrU16PtrU16PtrInt(const char* label_id,const ImU16* xs,const ImU16* ys,const ImU16* err,int count,ImPlotErrorBarsFlags flags,int offset,int stride)
{
return ImPlot::PlotErrorBars(label_id,xs,ys,err,count,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotErrorBars_S32PtrS32PtrS32PtrInt(const char* label_id,const ImS32* xs,const ImS32* ys,const ImS32* err,int count,ImPlotErrorBarsFlags flags,int offset,int stride)
{
return ImPlot::PlotErrorBars(label_id,xs,ys,err,count,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotErrorBars_U32PtrU32PtrU32PtrInt(const char* label_id,const ImU32* xs,const ImU32* ys,const ImU32* err,int count,ImPlotErrorBarsFlags flags,int offset,int stride)
{
return ImPlot::PlotErrorBars(label_id,xs,ys,err,count,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotErrorBars_S64PtrS64PtrS64PtrInt(const char* label_id,const ImS64* xs,const ImS64* ys,const ImS64* err,int count,ImPlotErrorBarsFlags flags,int offset,int stride)
{
return ImPlot::PlotErrorBars(label_id,xs,ys,err,count,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotErrorBars_U64PtrU64PtrU64PtrInt(const char* label_id,const ImU64* xs,const ImU64* ys,const ImU64* err,int count,ImPlotErrorBarsFlags flags,int offset,int stride)
{
return ImPlot::PlotErrorBars(label_id,xs,ys,err,count,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotErrorBars_FloatPtrFloatPtrFloatPtrFloatPtr(const char* label_id,const float* xs,const float* ys,const float* neg,const float* pos,int count,ImPlotErrorBarsFlags flags,int offset,int stride)
{
return ImPlot::PlotErrorBars(label_id,xs,ys,neg,pos,count,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotErrorBars_doublePtrdoublePtrdoublePtrdoublePtr(const char* label_id,const double* xs,const double* ys,const double* neg,const double* pos,int count,ImPlotErrorBarsFlags flags,int offset,int stride)
{
return ImPlot::PlotErrorBars(label_id,xs,ys,neg,pos,count,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotErrorBars_S8PtrS8PtrS8PtrS8Ptr(const char* label_id,const ImS8* xs,const ImS8* ys,const ImS8* neg,const ImS8* pos,int count,ImPlotErrorBarsFlags flags,int offset,int stride)
{
return ImPlot::PlotErrorBars(label_id,xs,ys,neg,pos,count,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotErrorBars_U8PtrU8PtrU8PtrU8Ptr(const char* label_id,const ImU8* xs,const ImU8* ys,const ImU8* neg,const ImU8* pos,int count,ImPlotErrorBarsFlags flags,int offset,int stride)
{
return ImPlot::PlotErrorBars(label_id,xs,ys,neg,pos,count,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotErrorBars_S16PtrS16PtrS16PtrS16Ptr(const char* label_id,const ImS16* xs,const ImS16* ys,const ImS16* neg,const ImS16* pos,int count,ImPlotErrorBarsFlags flags,int offset,int stride)
{
return ImPlot::PlotErrorBars(label_id,xs,ys,neg,pos,count,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotErrorBars_U16PtrU16PtrU16PtrU16Ptr(const char* label_id,const ImU16* xs,const ImU16* ys,const ImU16* neg,const ImU16* pos,int count,ImPlotErrorBarsFlags flags,int offset,int stride)
{
return ImPlot::PlotErrorBars(label_id,xs,ys,neg,pos,count,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotErrorBars_S32PtrS32PtrS32PtrS32Ptr(const char* label_id,const ImS32* xs,const ImS32* ys,const ImS32* neg,const ImS32* pos,int count,ImPlotErrorBarsFlags flags,int offset,int stride)
{
return ImPlot::PlotErrorBars(label_id,xs,ys,neg,pos,count,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotErrorBars_U32PtrU32PtrU32PtrU32Ptr(const char* label_id,const ImU32* xs,const ImU32* ys,const ImU32* neg,const ImU32* pos,int count,ImPlotErrorBarsFlags flags,int offset,int stride)
{
return ImPlot::PlotErrorBars(label_id,xs,ys,neg,pos,count,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotErrorBars_S64PtrS64PtrS64PtrS64Ptr(const char* label_id,const ImS64* xs,const ImS64* ys,const ImS64* neg,const ImS64* pos,int count,ImPlotErrorBarsFlags flags,int offset,int stride)
{
return ImPlot::PlotErrorBars(label_id,xs,ys,neg,pos,count,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotErrorBars_U64PtrU64PtrU64PtrU64Ptr(const char* label_id,const ImU64* xs,const ImU64* ys,const ImU64* neg,const ImU64* pos,int count,ImPlotErrorBarsFlags flags,int offset,int stride)
{
return ImPlot::PlotErrorBars(label_id,xs,ys,neg,pos,count,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotStems_FloatPtrInt(const char* label_id,const float* values,int count,double ref,double scale,double start,ImPlotStemsFlags flags,int offset,int stride)
{
return ImPlot::PlotStems(label_id,values,count,ref,scale,start,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotStems_doublePtrInt(const char* label_id,const double* values,int count,double ref,double scale,double start,ImPlotStemsFlags flags,int offset,int stride)
{
return ImPlot::PlotStems(label_id,values,count,ref,scale,start,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotStems_S8PtrInt(const char* label_id,const ImS8* values,int count,double ref,double scale,double start,ImPlotStemsFlags flags,int offset,int stride)
{
return ImPlot::PlotStems(label_id,values,count,ref,scale,start,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotStems_U8PtrInt(const char* label_id,const ImU8* values,int count,double ref,double scale,double start,ImPlotStemsFlags flags,int offset,int stride)
{
return ImPlot::PlotStems(label_id,values,count,ref,scale,start,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotStems_S16PtrInt(const char* label_id,const ImS16* values,int count,double ref,double scale,double start,ImPlotStemsFlags flags,int offset,int stride)
{
return ImPlot::PlotStems(label_id,values,count,ref,scale,start,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotStems_U16PtrInt(const char* label_id,const ImU16* values,int count,double ref,double scale,double start,ImPlotStemsFlags flags,int offset,int stride)
{
return ImPlot::PlotStems(label_id,values,count,ref,scale,start,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotStems_S32PtrInt(const char* label_id,const ImS32* values,int count,double ref,double scale,double start,ImPlotStemsFlags flags,int offset,int stride)
{
return ImPlot::PlotStems(label_id,values,count,ref,scale,start,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotStems_U32PtrInt(const char* label_id,const ImU32* values,int count,double ref,double scale,double start,ImPlotStemsFlags flags,int offset,int stride)
{
return ImPlot::PlotStems(label_id,values,count,ref,scale,start,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotStems_S64PtrInt(const char* label_id,const ImS64* values,int count,double ref,double scale,double start,ImPlotStemsFlags flags,int offset,int stride)
{
return ImPlot::PlotStems(label_id,values,count,ref,scale,start,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotStems_U64PtrInt(const char* label_id,const ImU64* values,int count,double ref,double scale,double start,ImPlotStemsFlags flags,int offset,int stride)
{
return ImPlot::PlotStems(label_id,values,count,ref,scale,start,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotStems_FloatPtrFloatPtr(const char* label_id,const float* xs,const float* ys,int count,double ref,ImPlotStemsFlags flags,int offset,int stride)
{
return ImPlot::PlotStems(label_id,xs,ys,count,ref,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotStems_doublePtrdoublePtr(const char* label_id,const double* xs,const double* ys,int count,double ref,ImPlotStemsFlags flags,int offset,int stride)
{
return ImPlot::PlotStems(label_id,xs,ys,count,ref,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotStems_S8PtrS8Ptr(const char* label_id,const ImS8* xs,const ImS8* ys,int count,double ref,ImPlotStemsFlags flags,int offset,int stride)
{
return ImPlot::PlotStems(label_id,xs,ys,count,ref,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotStems_U8PtrU8Ptr(const char* label_id,const ImU8* xs,const ImU8* ys,int count,double ref,ImPlotStemsFlags flags,int offset,int stride)
{
return ImPlot::PlotStems(label_id,xs,ys,count,ref,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotStems_S16PtrS16Ptr(const char* label_id,const ImS16* xs,const ImS16* ys,int count,double ref,ImPlotStemsFlags flags,int offset,int stride)
{
return ImPlot::PlotStems(label_id,xs,ys,count,ref,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotStems_U16PtrU16Ptr(const char* label_id,const ImU16* xs,const ImU16* ys,int count,double ref,ImPlotStemsFlags flags,int offset,int stride)
{
return ImPlot::PlotStems(label_id,xs,ys,count,ref,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotStems_S32PtrS32Ptr(const char* label_id,const ImS32* xs,const ImS32* ys,int count,double ref,ImPlotStemsFlags flags,int offset,int stride)
{
return ImPlot::PlotStems(label_id,xs,ys,count,ref,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotStems_U32PtrU32Ptr(const char* label_id,const ImU32* xs,const ImU32* ys,int count,double ref,ImPlotStemsFlags flags,int offset,int stride)
{
return ImPlot::PlotStems(label_id,xs,ys,count,ref,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotStems_S64PtrS64Ptr(const char* label_id,const ImS64* xs,const ImS64* ys,int count,double ref,ImPlotStemsFlags flags,int offset,int stride)
{
return ImPlot::PlotStems(label_id,xs,ys,count,ref,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotStems_U64PtrU64Ptr(const char* label_id,const ImU64* xs,const ImU64* ys,int count,double ref,ImPlotStemsFlags flags,int offset,int stride)
{
return ImPlot::PlotStems(label_id,xs,ys,count,ref,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotInfLines_FloatPtr(const char* label_id,const float* values,int count,ImPlotInfLinesFlags flags,int offset,int stride)
{
return ImPlot::PlotInfLines(label_id,values,count,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotInfLines_doublePtr(const char* label_id,const double* values,int count,ImPlotInfLinesFlags flags,int offset,int stride)
{
return ImPlot::PlotInfLines(label_id,values,count,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotInfLines_S8Ptr(const char* label_id,const ImS8* values,int count,ImPlotInfLinesFlags flags,int offset,int stride)
{
return ImPlot::PlotInfLines(label_id,values,count,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotInfLines_U8Ptr(const char* label_id,const ImU8* values,int count,ImPlotInfLinesFlags flags,int offset,int stride)
{
return ImPlot::PlotInfLines(label_id,values,count,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotInfLines_S16Ptr(const char* label_id,const ImS16* values,int count,ImPlotInfLinesFlags flags,int offset,int stride)
{
return ImPlot::PlotInfLines(label_id,values,count,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotInfLines_U16Ptr(const char* label_id,const ImU16* values,int count,ImPlotInfLinesFlags flags,int offset,int stride)
{
return ImPlot::PlotInfLines(label_id,values,count,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotInfLines_S32Ptr(const char* label_id,const ImS32* values,int count,ImPlotInfLinesFlags flags,int offset,int stride)
{
return ImPlot::PlotInfLines(label_id,values,count,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotInfLines_U32Ptr(const char* label_id,const ImU32* values,int count,ImPlotInfLinesFlags flags,int offset,int stride)
{
return ImPlot::PlotInfLines(label_id,values,count,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotInfLines_S64Ptr(const char* label_id,const ImS64* values,int count,ImPlotInfLinesFlags flags,int offset,int stride)
{
return ImPlot::PlotInfLines(label_id,values,count,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotInfLines_U64Ptr(const char* label_id,const ImU64* values,int count,ImPlotInfLinesFlags flags,int offset,int stride)
{
return ImPlot::PlotInfLines(label_id,values,count,flags,offset,stride);
}
CIMGUI_API void ImPlot_PlotPieChart_FloatPtrPlotFormatter(const char* const label_ids[],const float* values,int count,double x,double y,double radius,ImPlotFormatter fmt,void* fmt_data,double angle0,ImPlotPieChartFlags flags)
{
return ImPlot::PlotPieChart(label_ids,values,count,x,y,radius,fmt,fmt_data,angle0,flags);
}
CIMGUI_API void ImPlot_PlotPieChart_doublePtrPlotFormatter(const char* const label_ids[],const double* values,int count,double x,double y,double radius,ImPlotFormatter fmt,void* fmt_data,double angle0,ImPlotPieChartFlags flags)
{
return ImPlot::PlotPieChart(label_ids,values,count,x,y,radius,fmt,fmt_data,angle0,flags);
}
CIMGUI_API void ImPlot_PlotPieChart_S8PtrPlotFormatter(const char* const label_ids[],const ImS8* values,int count,double x,double y,double radius,ImPlotFormatter fmt,void* fmt_data,double angle0,ImPlotPieChartFlags flags)
{
return ImPlot::PlotPieChart(label_ids,values,count,x,y,radius,fmt,fmt_data,angle0,flags);
}
CIMGUI_API void ImPlot_PlotPieChart_U8PtrPlotFormatter(const char* const label_ids[],const ImU8* values,int count,double x,double y,double radius,ImPlotFormatter fmt,void* fmt_data,double angle0,ImPlotPieChartFlags flags)
{
return ImPlot::PlotPieChart(label_ids,values,count,x,y,radius,fmt,fmt_data,angle0,flags);
}
CIMGUI_API void ImPlot_PlotPieChart_S16PtrPlotFormatter(const char* const label_ids[],const ImS16* values,int count,double x,double y,double radius,ImPlotFormatter fmt,void* fmt_data,double angle0,ImPlotPieChartFlags flags)
{
return ImPlot::PlotPieChart(label_ids,values,count,x,y,radius,fmt,fmt_data,angle0,flags);
}
CIMGUI_API void ImPlot_PlotPieChart_U16PtrPlotFormatter(const char* const label_ids[],const ImU16* values,int count,double x,double y,double radius,ImPlotFormatter fmt,void* fmt_data,double angle0,ImPlotPieChartFlags flags)
{
return ImPlot::PlotPieChart(label_ids,values,count,x,y,radius,fmt,fmt_data,angle0,flags);
}
CIMGUI_API void ImPlot_PlotPieChart_S32PtrPlotFormatter(const char* const label_ids[],const ImS32* values,int count,double x,double y,double radius,ImPlotFormatter fmt,void* fmt_data,double angle0,ImPlotPieChartFlags flags)
{
return ImPlot::PlotPieChart(label_ids,values,count,x,y,radius,fmt,fmt_data,angle0,flags);
}
CIMGUI_API void ImPlot_PlotPieChart_U32PtrPlotFormatter(const char* const label_ids[],const ImU32* values,int count,double x,double y,double radius,ImPlotFormatter fmt,void* fmt_data,double angle0,ImPlotPieChartFlags flags)
{
return ImPlot::PlotPieChart(label_ids,values,count,x,y,radius,fmt,fmt_data,angle0,flags);
}
CIMGUI_API void ImPlot_PlotPieChart_S64PtrPlotFormatter(const char* const label_ids[],const ImS64* values,int count,double x,double y,double radius,ImPlotFormatter fmt,void* fmt_data,double angle0,ImPlotPieChartFlags flags)
{
return ImPlot::PlotPieChart(label_ids,values,count,x,y,radius,fmt,fmt_data,angle0,flags);
}
CIMGUI_API void ImPlot_PlotPieChart_U64PtrPlotFormatter(const char* const label_ids[],const ImU64* values,int count,double x,double y,double radius,ImPlotFormatter fmt,void* fmt_data,double angle0,ImPlotPieChartFlags flags)
{
return ImPlot::PlotPieChart(label_ids,values,count,x,y,radius,fmt,fmt_data,angle0,flags);
}
CIMGUI_API void ImPlot_PlotPieChart_FloatPtrStr(const char* const label_ids[],const float* values,int count,double x,double y,double radius,const char* label_fmt,double angle0,ImPlotPieChartFlags flags)
{
return ImPlot::PlotPieChart(label_ids,values,count,x,y,radius,label_fmt,angle0,flags);
}
CIMGUI_API void ImPlot_PlotPieChart_doublePtrStr(const char* const label_ids[],const double* values,int count,double x,double y,double radius,const char* label_fmt,double angle0,ImPlotPieChartFlags flags)
{
return ImPlot::PlotPieChart(label_ids,values,count,x,y,radius,label_fmt,angle0,flags);
}
CIMGUI_API void ImPlot_PlotPieChart_S8PtrStr(const char* const label_ids[],const ImS8* values,int count,double x,double y,double radius,const char* label_fmt,double angle0,ImPlotPieChartFlags flags)
{
return ImPlot::PlotPieChart(label_ids,values,count,x,y,radius,label_fmt,angle0,flags);