2015-05-23 22:55:12 -06:00
|
|
|
// Copyright 2008 Dolphin Emulator Project
|
2015-05-17 17:08:10 -06:00
|
|
|
// Licensed under GPLv2+
|
2013-04-17 21:29:41 -06:00
|
|
|
// 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-03-12 13:33:41 -06:00
|
|
|
#include <string>
|
|
|
|
|
2014-10-21 00:01:38 -06:00
|
|
|
#include "Common/CommonTypes.h"
|
|
|
|
|
2014-02-10 11:54:46 -07:00
|
|
|
namespace OGL
|
|
|
|
{
|
|
|
|
class RasterFont
|
|
|
|
{
|
2008-12-07 21:46:09 -07:00
|
|
|
public:
|
2016-06-24 02:43:46 -06:00
|
|
|
RasterFont();
|
|
|
|
~RasterFont();
|
|
|
|
static int debug;
|
2012-12-11 04:37:08 -07:00
|
|
|
|
2016-06-24 02:43:46 -06:00
|
|
|
void printMultilineText(const std::string& text, double x, double y, double z, int bbWidth,
|
|
|
|
int bbHeight, u32 color);
|
2013-10-28 23:23:17 -06:00
|
|
|
|
2016-06-24 02:43:46 -06:00
|
|
|
private:
|
|
|
|
u32 VBO;
|
|
|
|
u32 VAO;
|
|
|
|
u32 texture;
|
|
|
|
u32 uniform_color_id;
|
|
|
|
u32 uniform_offset_id;
|
2008-12-07 21:46:09 -07:00
|
|
|
};
|
2012-12-27 16:52:44 -07:00
|
|
|
}
|