From: Patrick Rudolph Date: Wed, 28 Sep 2016 18:11:34 +0000 (+0200) Subject: st/nine: Add debug output for lost devices X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=a52e700169066c7c2b4a26230f66f77db702af82;p=mesa.git st/nine: Add debug output for lost devices Add debug output to ease debugging. Signed-off-by: Patrick Rudolph Reviewed-by: Axel Davy --- diff --git a/src/gallium/state_trackers/nine/swapchain9.c b/src/gallium/state_trackers/nine/swapchain9.c index 03bdcd33efe..f571416ec74 100644 --- a/src/gallium/state_trackers/nine/swapchain9.c +++ b/src/gallium/state_trackers/nine/swapchain9.c @@ -781,6 +781,7 @@ NineSwapChain9_Present( struct NineSwapChain9 *This, if (This->base.device->ex) { if (NineSwapChain9_GetOccluded(This)) { + DBG("Present is occluded. Returning S_PRESENT_OCCLUDED.\n"); return S_PRESENT_OCCLUDED; } } else { @@ -789,6 +790,7 @@ NineSwapChain9_Present( struct NineSwapChain9 *This, This->base.device->device_needs_reset = TRUE; } if (This->base.device->device_needs_reset) { + DBG("Device is lost. Returning D3DERR_DEVICELOST.\n"); return D3DERR_DEVICELOST; } }