wined3d: Check for offscreen contexts inside context_validate_onscreen_formats() itself.
diff --git a/dlls/wined3d/context.c b/dlls/wined3d/context.c index 9cbdd46..065fceb 100644 --- a/dlls/wined3d/context.c +++ b/dlls/wined3d/context.c
@@ -1973,7 +1973,7 @@ /* Onscreen surfaces are always in a swapchain */ IWineD3DSwapChainImpl *swapchain = (IWineD3DSwapChainImpl *)context->current_rt->container; - if (!depth_stencil) return; + if (context->render_offscreen || !depth_stencil) return; if (match_depth_stencil_format(swapchain->ds_format, depth_stencil->resource.format_desc)) return; /* TODO: If the requested format would satisfy the needs of the existing one(reverse match), @@ -1992,7 +1992,7 @@ { if (wined3d_settings.offscreen_rendering_mode == ORM_FBO) { - if (!context->render_offscreen) context_validate_onscreen_formats(device, context, NULL); + context_validate_onscreen_formats(device, context, NULL); if (context->render_offscreen) { @@ -2032,7 +2032,7 @@ if (wined3d_settings.offscreen_rendering_mode == ORM_FBO) { - if (!context->render_offscreen) context_validate_onscreen_formats(device, context, depth_stencil); + context_validate_onscreen_formats(device, context, depth_stencil); ENTER_GL(); context_apply_fbo_state_blit(context, GL_FRAMEBUFFER, render_target, depth_stencil); @@ -2078,7 +2078,7 @@ if (wined3d_settings.offscreen_rendering_mode == ORM_FBO) { - if (!context->render_offscreen) context_validate_onscreen_formats(device, context, device->depth_stencil); + context_validate_onscreen_formats(device, context, device->depth_stencil); if (!context->render_offscreen) {