DirectX 11从全屏切换 - >窗口问题

时间:2011-02-17 15:28:21

标签: c++ directx directx-10 directx-11

我一直在搜寻各种网站,寻找正确的方法来管理切换。

我以为我已经破解了它,但我注意到一个奇怪的问题,我现在正在为绘制调用设置顶点和像素着色器。

我可以使用alt-enter切换到全屏,一切都很好,交换回来,留下一个空白窗口或正确渲染,但永远不会继续呈现任何更新。

即它基本上渲染一帧并且任何输入都已注册但在屏幕上不可见,直到你换到全屏。

很明显我可能会错过使用swapchain或devicecontext的东西,因为我注意到使用Flush()它会强制它工作但是我意识到显然不是解决方案。

渲染功能代码段

    cube_.setToContext(context);
    context->VSSetConstantBuffers( 0, 1, &cb_NeverChanges_ );
    context->VSSetConstantBuffers( 1, 1, &cb_ResizeChanges_ );
    context->VSSetConstantBuffers( 2, 1, &cb_FrameChanges_ );

    context->PSSetConstantBuffers( 0, 1, &cb_NeverChanges_ );
    context->PSSetConstantBuffers( 1, 1, &cb_ResizeChanges_ );
    context->PSSetConstantBuffers( 2, 1, &cb_FrameChanges_ );

    context->VSSetShader( vertexShader_, nullptr, 0 );
    context->PSSetShader( pixelShader_, nullptr, 0 );
    context->Draw(cube_.getVertexTotal(), 0);

    dx_.getSwapChain()->Present(0,0);

调整从WM_SIZE大小写传递高度/宽度的函数

if(FAILED(swapChain_->GetFullscreenState(&fullScreen, nullptr)))
        OutputDebugStringA("Failed to get fullscreen state.\n");

    swapChain_->GetDesc(&swapChainDesc);
    swapChainDesc.Windowed = !fullScreen;
    swapChainDesc.Flags = 0;
    if(fullScreen)
        swapChainDesc.Flags = DXGI_SWAP_CHAIN_FLAG_ALLOW_MODE_SWITCH;
    //Release renderTarget, depth stencil, depth stencil view, etc

    depthStencilView_->Release();
    depthStencil_->Release();
    renderTarget_->Release();

    if(FAILED(swapChain_->ResizeBuffers(swapChainDesc.BufferCount,width,height, swapChainDesc.BufferDesc.Format ,swapChainDesc.Flags)))
    {
        MessageBox( NULL, "Failed to resize buffers.", "Error", MB_OK );
        return false;
    }

    //recreate everything that was released
    if(!createRenderTarget())   
        return false;
    if(!createDepthStencils(width,height))
        return false;


    context_->OMSetRenderTargets( 1, &renderTarget_, depthStencilView_);
    D3D11_VIEWPORT vp;  //Should be a member of dx!
    vp.Width = (float)width;
    vp.Height = (float)height;
    vp.MinDepth = 0.0f;
    vp.MaxDepth = 1.0f;
    vp.TopLeftX = 0;
    vp.TopLeftY = 0;
    context_->RSSetViewports( 1, &vp );

使用此

进行交换链设置
    DXGI_SWAP_CHAIN_DESC swapChainDesc;
ZeroMemory( &swapChainDesc, sizeof( swapChainDesc ) );
swapChainDesc.BufferCount = 1;
swapChainDesc.BufferDesc.Width = width;
swapChainDesc.BufferDesc.Height = height; 
swapChainDesc.BufferDesc.Format = DXGI_FORMAT_R8G8B8A8_UNORM;
swapChainDesc.BufferDesc.RefreshRate.Numerator = 0; //auto =0, originally 60
swapChainDesc.BufferDesc.RefreshRate.Denominator = 0;
swapChainDesc.BufferUsage = DXGI_USAGE_RENDER_TARGET_OUTPUT;
swapChainDesc.OutputWindow = hWnd;
swapChainDesc.SampleDesc.Count = 1;
swapChainDesc.SampleDesc.Quality = 0;
swapChainDesc.Windowed = TRUE;

我一直在使用D3D11_CREATE_DEVICE_DEBUG进行测试,没有错误/警告/泄漏,任何评论或输入欢迎。

2 个答案:

答案 0 :(得分:1)

最新的nvidia驱动程序解决了这个问题(驱动程序275.33),测试了gtx460和gtx570。

显然有一个软件解释和解决这个问题,但它现在正在工作,这就是我想要的。

将来读这篇文章并偶然发现其他修复程序的人请告诉我。

答案 1 :(得分:1)

从D3D10移植到11后,我遇到了与我的应用程序相同的问题。从全屏模式切换到窗口模式时,一切都空白。安装最新的GeForce驱动器解决了这个问题(没有任何代码更改)。