From: José Fonseca Date: Thu, 19 Feb 2009 13:15:25 +0000 (+0000) Subject: wgl: debug_printf in the main entry/exit points X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=5246c389e56f059096a896c9b17ad0b31f8514b4;p=mesa.git wgl: debug_printf in the main entry/exit points --- diff --git a/src/gallium/state_trackers/wgl/shared/stw_device.c b/src/gallium/state_trackers/wgl/shared/stw_device.c index 4d705b46825..097e6ea62b3 100644 --- a/src/gallium/state_trackers/wgl/shared/stw_device.c +++ b/src/gallium/state_trackers/wgl/shared/stw_device.c @@ -60,6 +60,8 @@ st_init(const struct stw_winsys *stw_winsys) { static struct stw_device stw_dev_storage; + debug_printf("%s\n", __FUNCTION__); + assert(!stw_dev); stw_dev = &stw_dev_storage; @@ -94,6 +96,8 @@ st_cleanup(void) { UINT_PTR i; + debug_printf("%s\n", __FUNCTION__); + if (!stw_dev) return;