MCPcopy Create free account
hub / github.com/arrayfire/forge / fg_set_histogram_legend

Function fg_set_histogram_legend

src/api/c/histogram.cpp:71–82  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

69}
70
71fg_err fg_set_histogram_legend(fg_histogram pHistogram, const char* pLegend)
72{
73 try {
74 ARG_ASSERT(0, (pHistogram!=0));
75 ARG_ASSERT(1, (pLegend!=0));
76
77 getHistogram(pHistogram)->setLegend(pLegend);
78 }
79 CATCHALL
80
81 return FG_ERR_NONE;
82}
83
84fg_err fg_get_histogram_vertex_buffer(unsigned* pOut, const fg_histogram pHistogram)
85{

Callers 1

setLegendMethod · 0.85

Calls 2

getHistogramFunction · 0.85
setLegendMethod · 0.45

Tested by

no test coverage detected