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