mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
dwrite: Stub for CreateMonitorRenderingParams().
This commit is contained in:
parent
f4f54e1fb7
commit
7707ca7d09
1 changed files with 8 additions and 2 deletions
|
@ -256,8 +256,14 @@ static HRESULT WINAPI dwritefactory_CreateRenderingParams(IDWriteFactory *iface,
|
|||
static HRESULT WINAPI dwritefactory_CreateMonitorRenderingParams(IDWriteFactory *iface, HMONITOR monitor,
|
||||
IDWriteRenderingParams **params)
|
||||
{
|
||||
FIXME("(%p %p): stub\n", monitor, params);
|
||||
return E_NOTIMPL;
|
||||
static int fixme_once = 0;
|
||||
|
||||
TRACE("(%p %p)\n", monitor, params);
|
||||
|
||||
if (!fixme_once++)
|
||||
FIXME("(%p): monitor setting ignored\n", monitor);
|
||||
return IDWriteFactory_CreateCustomRenderingParams(iface, 0.0, 0.0, 0.0, DWRITE_PIXEL_GEOMETRY_FLAT,
|
||||
DWRITE_RENDERING_MODE_DEFAULT, params);
|
||||
}
|
||||
|
||||
static HRESULT WINAPI dwritefactory_CreateCustomRenderingParams(IDWriteFactory *iface, FLOAT gamma, FLOAT enhancedContrast,
|
||||
|
|
Loading…
Reference in a new issue