Files
dolphin/Source/Core/VideoBackends/Software/RasterFont.h
T

28 lines
662 B
C++
Raw Normal View History

// Copyright 2013 Dolphin Emulator Project
// Licensed under GPLv2
// Refer to the license.txt file included.
2013-03-26 00:05:46 +01:00
#pragma once
2013-03-26 00:05:46 +01:00
class RasterFont
{
2013-03-26 00:05:46 +01:00
public:
RasterFont();
~RasterFont();
static int debug;
// and the happy helper functions
void printString(const char *s, double x, double y, double z=0.0);
void printCenteredString(const char *s, double y, int screen_width, double z=0.0);
2013-03-26 00:05:46 +01:00
void printMultilineText(const char *text, double x, double y, double z, int bbWidth, int bbHeight);
2013-03-26 00:05:46 +01:00
private:
int fontOffset;
char *temp_buffer;
static const int TEMP_BUFFER_SIZE = 64 * 1024;
static const int CHAR_WIDTH = 10;
static const int CHAR_HEIGHT = 15;
2013-03-26 00:05:46 +01:00
};