2013-04-18 03:29:41 +00:00
|
|
|
// Copyright 2013 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2
|
|
|
|
// Refer to the license.txt file included.
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2009-04-03 14:35:49 +00:00
|
|
|
#ifndef _RASTERFONT_H_
|
|
|
|
#define _RASTERFONT_H_
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2012-12-27 23:52:44 +00:00
|
|
|
namespace OGL {
|
2013-04-15 20:28:55 +00:00
|
|
|
|
2008-12-08 04:46:09 +00:00
|
|
|
class RasterFont {
|
|
|
|
public:
|
2013-04-15 20:28:55 +00:00
|
|
|
RasterFont();
|
|
|
|
~RasterFont(void);
|
|
|
|
static int debug;
|
2012-12-11 11:37:08 +00:00
|
|
|
|
|
|
|
void printMultilineText(const char *text, double x, double y, double z, int bbWidth, int bbHeight, u32 color);
|
2009-07-19 09:15:00 +00:00
|
|
|
private:
|
2012-12-11 11:37:08 +00:00
|
|
|
|
|
|
|
u32 VBO;
|
|
|
|
u32 VAO;
|
|
|
|
u32 texture;
|
2012-12-11 21:08:53 +00:00
|
|
|
u32 uniform_color_id;
|
|
|
|
u32 cached_color;
|
2008-12-08 04:46:09 +00:00
|
|
|
};
|
|
|
|
|
2012-12-27 23:52:44 +00:00
|
|
|
}
|
|
|
|
|
2009-04-03 14:35:49 +00:00
|
|
|
#endif // _RASTERFONT_H_
|