wined3d: Add a FIXME for missing ARB_depth_clamp support.
This commit is contained in:
parent
950a0f87a0
commit
fe1024ae4f
|
@ -584,6 +584,10 @@ static void state_clipping(DWORD state, IWineD3DStateBlockImpl *stateblock, stru
|
||||||
glEnable(GL_DEPTH_CLAMP);
|
glEnable(GL_DEPTH_CLAMP);
|
||||||
checkGLcall("glEnable(GL_DEPTH_CLAMP)");
|
checkGLcall("glEnable(GL_DEPTH_CLAMP)");
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
FIXME("Clipping disabled, but ARB_depth_clamp isn't supported.\n");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (enable & WINED3DCLIPPLANE0) { glEnable(GL_CLIP_PLANE0); checkGLcall("glEnable(clip plane 0)"); }
|
if (enable & WINED3DCLIPPLANE0) { glEnable(GL_CLIP_PLANE0); checkGLcall("glEnable(clip plane 0)"); }
|
||||||
|
|
Loading…
Reference in New Issue