Commit c5d91777 authored by Henri Verbeet's avatar Henri Verbeet Committed by Alexandre Julliard

wined3d: Get rid of the WINED3D_CT_NONE case in d3dfmt_convert_surface().

This is never used.
parent fcf4f1c6
......@@ -3168,12 +3168,6 @@ static HRESULT d3dfmt_convert_surface(const BYTE *src, BYTE *dst, UINT pitch, UI
switch (conversion_type)
{
case WINED3D_CT_NONE:
{
memcpy(dst, src, pitch * height);
break;
}
case WINED3D_CT_P8:
if (surface->container->swapchain && surface->container->swapchain->palette)
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment