Skip to content

Commit

Permalink
address review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
tusharpm committed Aug 9, 2019
1 parent 564180a commit 3c4184c
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 12 deletions.
4 changes: 2 additions & 2 deletions include/fg/histogram.h
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@ FGAPI fg_err fg_release_histogram(fg_histogram pHistogram);
This is global alpha value for the histogram rendering that takes
effect if individual bar alphas are not set by calling the following
member functions
- Histogram::alphas()
- Histogram::alphasSize()
- fg_get_histogram_alpha_buffer
- fg_get_histogram_alpha_buffer_size
\param[in] pHistogram is the histogram handle
\param[in] pRed is Red component in range [0, 1]
Expand Down
18 changes: 9 additions & 9 deletions include/fg/pie.h
Original file line number Diff line number Diff line change
Expand Up @@ -53,13 +53,13 @@ FGAPI fg_err fg_retain_pie(fg_pie *pOut, fg_pie pIn);
FGAPI fg_err fg_release_pie(fg_pie pPie);

/**
Set the color of bar in the bar graph(pie)
Set the color of all sectors in the pie chart
This is global alpha value for the pie rendering that takes
effect if individual bar alphas are not set by calling the following
member functions
- Pie::alphas()
- Pie::alphasSize()
effect if individual sector alphas are not set in the buffer
obtained by the following functions
- fg_get_pie_alpha_buffer
- fg_get_pie_alpha_buffer_size
\param[in] pPie is the pie handle
\param[in] pRed is Red component in range [0, 1]
Expand Down Expand Up @@ -193,17 +193,17 @@ class Pie {
FGAPI ~Pie();

/**
Set the color of bar in the bar graph(pie)
Set the color of all sectors in the pie chart
\param[in] pColor takes values of type forge::Color to define bar color
\param[in] pColor takes values of type forge::Color to define sector color
**/
FGAPI void setColor(const Color pColor);

/**
Set the color of bar in the bar graph(pie)
Set the color of all sectors in the pie chart
This is global alpha value for the pie rendering that takes
effect if individual bar alphas are not set by calling the following
effect if individual sector alphas are not set by calling the following
member functions
- Pie::alphas()
- Pie::alphasSize()
Expand Down
1 change: 0 additions & 1 deletion src/backend/opengl/pie_impl.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@

#include <glm/glm.hpp>

#include <memory>
#include <map>

namespace forge
Expand Down

0 comments on commit 3c4184c

Please sign in to comment.