17 lines
269 B
C++
17 lines
269 B
C++
#pragma once
|
|
#include "Font_Face.h"
|
|
#include "blend2d/blend2d.h"
|
|
|
|
namespace renderive {
|
|
|
|
struct Font_Face::Impl {
|
|
BLFontFace face;
|
|
};
|
|
|
|
struct Font_Registry::Impl {
|
|
BLFontManager manager;
|
|
std::shared_ptr<Font_Face> default_face;
|
|
};
|
|
|
|
} // namespace renderive
|