Files
Renderive/Core/render/Font_Face_p.h
T
2026-08-01 20:09:45 +08:00

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