Go to file
my 82f878b9ec readme update 0.4 2019-10-29 13:29:46 +01:00
main + fillValue in Font 2019-10-23 11:42:32 +02:00
res added font Bitmap 2019-10-15 16:15:48 +02:00
src + fillValue in Font 2019-10-23 11:42:32 +02:00
test + Unit test framework 2019-10-16 15:44:13 +02:00
.gitignore now the gitignore has content 2019-10-16 16:18:13 +02:00
CHANGELOG.md + Unit test framework 2019-10-16 15:44:13 +02:00
CMakeLists.txt + clang_tidy 2019-10-21 15:22:28 +00:00
LICENSE wrong filename for license 2019-10-16 16:46:08 +02:00
README.md readme update 0.4 2019-10-29 13:29:46 +01:00

README.md

vKVM TextRenderer

Installation

Use the installation script provided in the Scripts repository to install the full package.

Installing a single component is currently not supported.

Target

TextRender build exports an interface target TextRender::TextRender.

This means that if TextRender has been installed on the Project Path, it should be enough to do.

translate a string from terminal to the readable form of shared memory .

Usage

mkdir build
cd build
cmake ..
make

Description

TextRender has two class, Bitmap class and Font class.

res/font.bmp (bitmap data, used by Bitmap::load() function)

res/font.toml (configuration file, it configure how to read the font.bmp)

src/Bitmap class, it used to read the font.bmp file.

src/Font class, it read the font.bmp data by Bitmap class, translate a string to a bitmap.

test folder used to test.

main folder is only used to test now.