Commit 34b1482f authored by Stefan Dösinger's avatar Stefan Dösinger Committed by Alexandre Julliard

wined3d: Render state additions and fixes.

parent 8af7dd5d
...@@ -4122,32 +4122,30 @@ HRESULT WINAPI IWineD3DDeviceImpl_SetRenderState(IWineD3DDevice *iface, D3DRENDE ...@@ -4122,32 +4122,30 @@ HRESULT WINAPI IWineD3DDeviceImpl_SetRenderState(IWineD3DDevice *iface, D3DRENDE
} }
break; break;
} }
case WINED3DRS_SEPARATEALPHABLENDENABLE :
case WINED3DRS_SRCBLENDALPHA : case WINED3DRS_TEXTUREPERSPECTIVE :
case WINED3DRS_DESTBLENDALPHA : {
case WINED3DRS_BLENDOPALPHA : if (Value)
case WINED3DRS_MULTISAMPLEMASK : glHint(GL_PERSPECTIVE_CORRECTION_HINT, GL_NICEST);
case WINED3DRS_PATCHEDGESTYLE : else
case WINED3DRS_PATCHSEGMENTS : glHint(GL_PERSPECTIVE_CORRECTION_HINT, GL_FASTEST);
case WINED3DRS_DEBUGMONITORTOKEN :
case WINED3DRS_POSITIONORDER :
case WINED3DRS_NORMALORDER :
case WINED3DRS_MINTESSELLATIONLEVEL :
case WINED3DRS_MAXTESSELLATIONLEVEL :
case WINED3DRS_ADAPTIVETESS_X :
case WINED3DRS_ADAPTIVETESS_Y :
case WINED3DRS_ADAPTIVETESS_Z :
case WINED3DRS_ADAPTIVETESS_W :
case WINED3DRS_ENABLEADAPTIVETESSELLATION :
case WINED3DRS_COLORWRITEENABLE1 :
case WINED3DRS_COLORWRITEENABLE2 :
case WINED3DRS_COLORWRITEENABLE3 :
case WINED3DRS_BLENDFACTOR :
case WINED3DRS_SRGBWRITEENABLE :
FIXME("(%p)->(%s,%ld) not handled yet\n", This, debug_d3drenderstate(State), Value);
break; break;
}
case WINED3DRS_STIPPLEDALPHA :
{
if (Value)
ERR(" Stippled Alpha not supported yet.\n");
break;
}
case WINED3DRS_ANTIALIAS :
{
if (Value)
ERR(" Antialias not supported yet.\n");
break;
}
default: default:
FIXME("(%p)->(%d,%ld) unrecognized\n", This, State, Value); FIXME("(%p)->(%s,%ld) not handled yet\n", This, debug_d3drenderstate(State), Value);
} }
LEAVE_GL(); LEAVE_GL();
......
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