| 58 | } |
| 59 | |
| 60 | extern "C" int DWriteInit(glyph_generator *GlyphGen, IDXGISurface *GlyphTransferSurface) |
| 61 | { |
| 62 | int Result = 0; |
| 63 | |
| 64 | DWriteCreateFactory(DWRITE_FACTORY_TYPE_SHARED, __uuidof(IDWriteFactory), (IUnknown**)&GlyphGen->DWriteFactory); |
| 65 | if(GlyphGen->DWriteFactory) |
| 66 | { |
| 67 | Result = 1; |
| 68 | } |
| 69 | |
| 70 | return Result; |
| 71 | } |
| 72 | |
| 73 | extern "C" SIZE DWriteGetTextExtent(glyph_generator *GlyphGen, int StringLen, wchar_t *String) |
| 74 | { |
no outgoing calls
no test coverage detected