2013-04-17 23:29:41 -04:00
|
|
|
// Copyright 2013 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2
|
|
|
|
// Refer to the license.txt file included.
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2014-02-10 13:54:46 -05:00
|
|
|
#pragma once
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2014-02-10 13:54:46 -05:00
|
|
|
namespace OGL
|
|
|
|
{
|
2013-04-15 16:28:55 -04:00
|
|
|
|
2014-02-10 13:54:46 -05:00
|
|
|
class RasterFont
|
|
|
|
{
|
2008-12-08 04:46:09 +00:00
|
|
|
public:
|
2013-04-15 16:28:55 -04:00
|
|
|
RasterFont();
|
|
|
|
~RasterFont(void);
|
|
|
|
static int debug;
|
2012-12-11 12:37:08 +01: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:
|
2013-10-29 01:23:17 -04:00
|
|
|
|
2012-12-11 12:37:08 +01:00
|
|
|
u32 VBO;
|
|
|
|
u32 VAO;
|
|
|
|
u32 texture;
|
2012-12-11 22:08:53 +01:00
|
|
|
u32 uniform_color_id;
|
|
|
|
u32 cached_color;
|
2008-12-08 04:46:09 +00:00
|
|
|
};
|
|
|
|
|
2012-12-28 00:52:44 +01:00
|
|
|
}
|