mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
d3drm: Remove stub messages for implemented methods TRACEs.
Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com> Signed-off-by: Henri Verbeet <hverbeet@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
02dbe712ee
commit
bd592609e7
4 changed files with 6 additions and 6 deletions
|
@ -1146,7 +1146,7 @@ static D3DCOLORMODEL WINAPI d3drm_device1_GetColorModel(IDirect3DRMDevice *iface
|
|||
{
|
||||
struct d3drm_device *device = impl_from_IDirect3DRMDevice(iface);
|
||||
|
||||
TRACE("iface %p stub!\n", iface);
|
||||
TRACE("iface %p.\n", iface);
|
||||
|
||||
return d3drm_device3_GetColorModel(&device->IDirect3DRMDevice3_iface);
|
||||
}
|
||||
|
@ -1580,7 +1580,7 @@ static HRESULT WINAPI d3drm_device_win_GetName(IDirect3DRMWinDevice *iface, DWOR
|
|||
{
|
||||
struct d3drm_device *device = impl_from_IDirect3DRMWinDevice(iface);
|
||||
|
||||
TRACE("iface %p, size %p, name %p stub!\n", iface, size, name);
|
||||
TRACE("iface %p, size %p, name %p.\n", iface, size, name);
|
||||
|
||||
return d3drm_device3_GetName(&device->IDirect3DRMDevice3_iface, size, name);
|
||||
}
|
||||
|
|
|
@ -2002,7 +2002,7 @@ static HRESULT WINAPI d3drm_frame3_SetSceneBackgroundRGB(IDirect3DRMFrame3 *ifac
|
|||
{
|
||||
struct d3drm_frame *frame = impl_from_IDirect3DRMFrame3(iface);
|
||||
|
||||
TRACE("iface %p, red %.8e, green %.8e, blue %.8e stub!\n", iface, red, green, blue);
|
||||
TRACE("iface %p, red %.8e, green %.8e, blue %.8e.\n", iface, red, green, blue);
|
||||
|
||||
frame->scenebackground = RGBA_MAKE((BYTE)(red * 255.0f),
|
||||
(BYTE)(green * 255.0f), (BYTE)(blue * 255.0f), 0xff);
|
||||
|
|
|
@ -2211,7 +2211,7 @@ static HRESULT WINAPI d3drm_mesh_builder3_GetNormals(IDirect3DRMMeshBuilder3 *if
|
|||
struct d3drm_mesh_builder *mesh_builder = impl_from_IDirect3DRMMeshBuilder3(iface);
|
||||
DWORD count = mesh_builder->nb_normals - start_idx;
|
||||
|
||||
TRACE("iface %p, start_idx %u, normal_count %p, normals %p stub!\n",
|
||||
TRACE("iface %p, start_idx %u, normal_count %p, normals %p.\n",
|
||||
iface, start_idx, normal_count, normals);
|
||||
|
||||
if (normal_count)
|
||||
|
|
|
@ -222,7 +222,7 @@ static HRESULT WINAPI d3drm_texture1_SetDecalSize(IDirect3DRMTexture *iface, D3D
|
|||
{
|
||||
struct d3drm_texture *texture = impl_from_IDirect3DRMTexture(iface);
|
||||
|
||||
TRACE("iface %p, width %.8e, height %.8e stub!\n", iface, width, height);
|
||||
TRACE("iface %p, width %.8e, height %.8e.\n", iface, width, height);
|
||||
|
||||
return IDirect3DRMTexture3_SetDecalSize(&texture->IDirect3DRMTexture3_iface, width, height);
|
||||
}
|
||||
|
@ -522,7 +522,7 @@ static HRESULT WINAPI d3drm_texture2_SetDecalSize(IDirect3DRMTexture2 *iface, D3
|
|||
{
|
||||
struct d3drm_texture *texture = impl_from_IDirect3DRMTexture2(iface);
|
||||
|
||||
TRACE("iface %p, width %.8e, height %.8e stub!\n", iface, width, height);
|
||||
TRACE("iface %p, width %.8e, height %.8e.\n", iface, width, height);
|
||||
|
||||
return IDirect3DRMTexture3_SetDecalSize(&texture->IDirect3DRMTexture3_iface, width, height);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue