Skip to content

Commit

Permalink
D3D11: Fixed a crash after a GPU device-reset on Win32
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidLudwig committed Mar 23, 2014
1 parent 6ce684e commit 46a80b0
Showing 1 changed file with 17 additions and 11 deletions.
28 changes: 17 additions & 11 deletions src/render/direct3d11/SDL_render_d3d11.c
Expand Up @@ -851,6 +851,12 @@ D3D11_ReleaseAll(SDL_Renderer * renderer)
D3D11_RenderData *data = (D3D11_RenderData *) renderer->driverdata;
SDL_Texture *texture = NULL;

/* Release all textures */
for (texture = renderer->textures; texture; texture = texture->next) {
D3D11_DestroyTexture(renderer, texture);
}

/* Release/reset everything else */
if (data) {
SAFE_RELEASE(data->dxgiFactory);
SAFE_RELEASE(data->dxgiAdapter);
Expand All @@ -874,13 +880,6 @@ D3D11_ReleaseAll(SDL_Renderer * renderer)
SAFE_RELEASE(data->clippedRasterizer);
SAFE_RELEASE(data->vertexShaderConstants);

if (data->hD3D11Mod) {
SDL_UnloadObject(data->hD3D11Mod);
}
if (data->hDXGIMod) {
SDL_UnloadObject(data->hDXGIMod);
}

data->swapEffect = (DXGI_SWAP_EFFECT) 0;
data->rotation = DXGI_MODE_ROTATION_UNSPECIFIED;
data->currentRenderTargetView = NULL;
Expand All @@ -889,11 +888,18 @@ D3D11_ReleaseAll(SDL_Renderer * renderer)
data->currentShader = NULL;
data->currentShaderResource = NULL;
data->currentSampler = NULL;
}

/* Release all textures */
for (texture = renderer->textures; texture; texture = texture->next) {
D3D11_DestroyTexture(renderer, texture);
/* Unload the D3D libraries. This should be done last, in order
* to prevent IUnknown::Release() calls from crashing.
*/
if (data->hD3D11Mod) {
SDL_UnloadObject(data->hD3D11Mod);
data->hD3D11Mod = NULL;
}
if (data->hDXGIMod) {
SDL_UnloadObject(data->hDXGIMod);
data->hDXGIMod = NULL;
}
}
}

Expand Down

0 comments on commit 46a80b0

Please sign in to comment.