Module: Mesa Branch: master Commit: 5246c389e56f059096a896c9b17ad0b31f8514b4 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=5246c389e56f059096a896c9b17ad0b31f8514b4
Author: José Fonseca <[email protected]> Date: Thu Feb 19 13:15:25 2009 +0000 wgl: debug_printf in the main entry/exit points --- src/gallium/state_trackers/wgl/shared/stw_device.c | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/src/gallium/state_trackers/wgl/shared/stw_device.c b/src/gallium/state_trackers/wgl/shared/stw_device.c index 4d705b4..097e6ea 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; _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
