Updated the osgText implemention, now works under Linux.

This commit is contained in:
Robert Osfield
2001-10-24 09:08:02 +00:00
parent 12826653b1
commit 6ddb40ba70
2 changed files with 245 additions and 219 deletions

View File

@@ -293,7 +293,7 @@ public:
Font* getFont(void);
void setText(const char* text) { _text=text; }
void setText(std::string& text) { _text=text; }
void setText(const std::string& text) { _text=text; }
const std::string& getText() const { return _text; }
virtual void drawImmediateMode(State& state);