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