diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2014-02-03 20:52:47 +0100 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2014-02-03 20:53:06 +0100 |
commit | 6183af64de3d18a1342747bc8186ab429d6dd7db (patch) | |
tree | 0eb01909181d5c06bd4b28378b55865637c69f7d | |
parent | a47351f84e9d9fe569700d79f14b239b6eff70a6 (diff) |
no need for typedefs here
Change-Id: I93c6a2ead9dfa25799376e4cfc88d77e18a4c9fd
-rwxr-xr-x | chart2/source/view/main/OpenGLRender.hxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/chart2/source/view/main/OpenGLRender.hxx b/chart2/source/view/main/OpenGLRender.hxx index 864a58c495b1..b5aeba302f36 100755 --- a/chart2/source/view/main/OpenGLRender.hxx +++ b/chart2/source/view/main/OpenGLRender.hxx @@ -58,22 +58,22 @@ #define DEBUG_POSITIONING 0 #define RENDER_TO_FILE 0 -typedef struct PosVecf3 +struct PosVecf3 { float x; float y; float z; -}PosVecf3; +}; typedef std::vector<GLfloat> Line2DPointList; -typedef struct Bubble2DPointList +struct Bubble2DPointList { float x; float y; float xScale; float yScale; -}Bubble2DPointList; +}; typedef std::vector<GLfloat> Bubble2DCircle; @@ -82,7 +82,7 @@ struct RectanglePointList float points[12]; }; -typedef struct TextInfo +struct TextInfo { GLuint texture; float x; @@ -90,7 +90,7 @@ typedef struct TextInfo float z; double rotation; float vertex[12]; -}TextInfo; +}; typedef std::vector<GLfloat> Area2DPointList; typedef std::vector<GLfloat> PieSegment2DPointList; |