IDXGISwapChain1::Present1 supports a sync interval of 0 to 4 for all devices.

TRAC #22056 Signed-off-by: Daniel Koch Author: Nicolas Capens git-svn-id: https://angleproject.googlecode.com/svn/branches/dx11proto@1412 736b8ea6-26fd-11df-bfd4-992fa37f6226
parent 65e65377
......@@ -500,16 +500,12 @@ bool Renderer11::get32BitIndexSupport() const
int Renderer11::getMinSwapInterval() const
{
// TODO
UNIMPLEMENTED();
return 1;
return 0;
}
int Renderer11::getMaxSwapInterval() const
{
// TODO
UNIMPLEMENTED();
return 1;
return 4;
}
int Renderer11::getMaxSupportedSamples() const
......
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