From 53b3cdaee2654895dc90a25376ba29b64d166c54 Mon Sep 17 00:00:00 2001 From: Jakob Bornecrantz Date: Wed, 26 Aug 2009 14:30:54 +0200 Subject: st/dri: Add some debug code --- src/gallium/state_trackers/dri/dri_drawable.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'src/gallium/state_trackers') diff --git a/src/gallium/state_trackers/dri/dri_drawable.c b/src/gallium/state_trackers/dri/dri_drawable.c index 62a7e239cf..c7ca7f78a3 100644 --- a/src/gallium/state_trackers/dri/dri_drawable.c +++ b/src/gallium/state_trackers/dri/dri_drawable.c @@ -57,8 +57,10 @@ dri_surface_from_handle(struct drm_api *api, struct pipe_buffer *buf = NULL; buf = api->buffer_from_handle(api, screen, "dri2 buffer", handle); - if (!buf) + if (!buf) { + debug_printf("%s: Failed to get buffer from handle\n", __func__); return NULL; + } memset(&templat, 0, sizeof(templat)); templat.tex_usage |= PIPE_TEXTURE_USAGE_RENDER_TARGET; @@ -75,8 +77,10 @@ dri_surface_from_handle(struct drm_api *api, /* we don't need the buffer from this point on */ pipe_buffer_reference(&buf, NULL); - if (!texture) + if (!texture) { + debug_printf("%s: Failed to blanket the buffer with a texture\n", __func__); return NULL; + } surface = screen->get_tex_surface(screen, texture, 0, 0, 0, PIPE_BUFFER_USAGE_GPU_READ | -- cgit v1.2.3