diff --git a/dlls/dwrite/font.c b/dlls/dwrite/font.c index 2aad83796fc..9c874f293d3 100644 --- a/dlls/dwrite/font.c +++ b/dlls/dwrite/font.c @@ -1678,9 +1678,17 @@ static HRESULT WINAPI dwritefontlist1_GetFont(IDWriteFontList1 *iface, UINT32 in { struct dwrite_fontlist *This = impl_from_IDWriteFontList1(iface); - FIXME("(%p)->(%u %p): stub\n", This, index, font); + TRACE("(%p)->(%u %p)\n", This, index, font); - return E_NOTIMPL; + *font = NULL; + + if (This->font_count == 0) + return S_FALSE; + + if (index >= This->font_count) + return E_FAIL; + + return create_font(This->fonts[index], This->family, font); } static HRESULT WINAPI dwritefontlist1_GetFontFaceReference(IDWriteFontList1 *iface, UINT32 index, diff --git a/dlls/dwrite/tests/font.c b/dlls/dwrite/tests/font.c index 5169f2afa15..3ffe97f82c1 100644 --- a/dlls/dwrite/tests/font.c +++ b/dlls/dwrite/tests/font.c @@ -2945,10 +2945,18 @@ static void test_GetMatchingFonts(void) font = (void*)0xdeadbeef; hr = IDWriteFontList1_GetFont(fontlist1, ~0u, &font); - todo_wine { ok(hr == E_FAIL, "got 0x%08x\n", hr); ok(font == NULL, "got %p\n", font); - } + + font = (void*)0xdeadbeef; + hr = IDWriteFontList1_GetFont(fontlist1, IDWriteFontList1_GetFontCount(fontlist1), &font); + ok(hr == E_FAIL, "got 0x%08x\n", hr); + ok(font == NULL, "got %p\n", font); + + hr = IDWriteFontList1_GetFont(fontlist1, 0, &font); + ok(hr == S_OK, "got 0x%08x\n", hr); + IDWriteFont3_Release(font); + IDWriteFontList1_Release(fontlist1); } else