00001
00032 #ifndef LL_LLHUDRENDER_H
00033 #define LL_LLHUDRENDER_H
00034
00035 #include "llfontgl.h"
00036
00037 class LLVector3;
00038 class LLFontGL;
00039
00040
00041 void hud_render_text(const LLWString &wstr,
00042 const LLVector3 &pos_agent,
00043 const LLFontGL &font,
00044 const U8 style,
00045 const F32 x_offset,
00046 const F32 y_offset,
00047 const LLColor4& color,
00048 const BOOL orthographic);
00049
00050
00051 void hud_render_utf8text(const std::string &str,
00052 const LLVector3 &pos_agent,
00053 const LLFontGL &font,
00054 const U8 style,
00055 const F32 x_offset,
00056 const F32 y_offset,
00057 const LLColor4& color,
00058 const BOOL orthographic);
00059
00060
00061 #endif //LL_LLHUDRENDER_H
00062