12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- #include <precomp.h>
- #include <bfc/wasabi_std.h>
- #include "freetype.h"
- #include "freetypefont.h"
- #include <api/font/FontCreator.h>
- #include <tataki/export.h>
- class AutoTataki : public LoadableResource
- {
- public:
- virtual void onRegisterServices() { Tataki::Init(WASABI_API_SVC); }
- virtual void onDeregisterServices() { Tataki::Quit(); }
- };
- static WACNAME wac;
- WACPARENT *the = &wac;
- static const GUID guid =
- { 0xef7e83b0, 0x10ed, 0x4be4, { 0xaf, 0xaf, 0xd0, 0x12, 0xf0, 0x5c, 0x11, 0x4e } };
- static const GUID freetypeFontRendererGUID =
- { 0x504060f6, 0x7d8c, 0x4ebe, { 0xae, 0x1d, 0xa8, 0xbd, 0xf5, 0xea, 0x18, 0x81 } };
- WACNAME::WACNAME() : WACPARENT(L"Freetype Font Service")
- {
- registerResource(new AutoTataki);
- registerService(new FontCreator<FreeTypeFont>(freetypeFontRendererGUID));
- }
- WACNAME::~WACNAME() {
- }
- GUID WACNAME::getGUID() {
- return guid;
- }
- void WACNAME::onRegisterServices()
- {
-
- }
- void WACNAME::onCreate() {
- }
- void WACNAME::onDestroy() {
- }
|