Kaydet (Commit) b7c7bd3d authored tarafından Markus Mohrhard's avatar Markus Mohrhard Kaydeden (comit) Markus Mohrhard

add teh rounded corners property back

This has been removed because it was unused.

Change-Id: If8fdf87cec1cd5fb5ee1924396643b152e6f3431
üst ceec6e1a
......@@ -35,7 +35,10 @@ class Bar : public Renderable3DObject
{
public:
Bar( const glm::mat4& rPosition, sal_uInt32 nId );
virtual void render() SAL_OVERRIDE;
private:
bool mbRoundedCorners;
glm::mat4 maPos;
Color maColor; // RGBA fill color
};
......
......@@ -29,6 +29,11 @@ Bar::Bar(const glm::mat4& rPosition, sal_uInt32 nId):
{
}
void Bar::render()
{
(void) mbRoundedCorners;
}
Line::Line(sal_uInt32 nId):
Renderable3DObject(nId)
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment