Fixed Bug 3147 - Windows: Crash when resizing Window since hg 1f9d57965528

Thanks for the fix, Gab!
This commit is contained in:
David Ludwig 2016-06-24 22:17:56 -04:00
parent ce456cfb8e
commit 23af328bb0

View File

@ -1004,6 +1004,10 @@ D3D_RecreateTexture(SDL_Renderer * renderer, SDL_Texture * texture)
D3D_RenderData *data = (D3D_RenderData *)renderer->driverdata;
D3D_TextureData *texturedata = (D3D_TextureData *)texture->driverdata;
if (!texturedata) {
return 0;
}
if (D3D_RecreateTextureRep(data->device, &texturedata->texture, texture->format, texture->w, texture->h) < 0) {
return -1;
}