Commit aa164647 authored by Ivan Gyurdiev's avatar Ivan Gyurdiev Committed by Alexandre Julliard

wined3d: Use D3DDEGREE consistently in the WINED3D namespace.

parent 4c723a76
...@@ -4493,14 +4493,14 @@ static HRESULT WINAPI IWineD3DDeviceImpl_SetRenderState(IWineD3DDevice *iface, W ...@@ -4493,14 +4493,14 @@ static HRESULT WINAPI IWineD3DDeviceImpl_SetRenderState(IWineD3DDevice *iface, W
case WINED3DRS_POSITIONDEGREE : case WINED3DRS_POSITIONDEGREE :
{ {
if(D3DDEGREE_CUBIC != Value) if(WINED3DDEGREE_CUBIC != Value)
ERR("(%p)->(%s,%d) not yet implemented\n", This, debug_d3drenderstate(State), Value); ERR("(%p)->(%s,%d) not yet implemented\n", This, debug_d3drenderstate(State), Value);
break; break;
} }
case WINED3DRS_NORMALDEGREE : case WINED3DRS_NORMALDEGREE :
{ {
if(D3DDEGREE_LINEAR != Value) if(WINED3DDEGREE_LINEAR != Value)
ERR("(%p)->(%s,%d) not yet implemented\n", This, debug_d3drenderstate(State), Value); ERR("(%p)->(%s,%d) not yet implemented\n", This, debug_d3drenderstate(State), Value);
break; break;
} }
......
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