diff options
author | José Fonseca <jrfonseca@tungstengraphics.com> | 2008-03-31 09:02:08 +0900 |
---|---|---|
committer | José Fonseca <jrfonseca@tungstengraphics.com> | 2008-03-31 17:28:33 +0900 |
commit | baab98a637d526871fb77ec6f313012f49c0e998 (patch) | |
tree | a06431b77007334d95c5d115e2b8116562fb68ce /src/gallium/winsys/xlib/xm_winsys_aub.c | |
parent | 63950b11b6060e4e0d06e0d14548ff132a295067 (diff) |
gallium: Eliminate p_winsys::printf
Not convenient and almost not used at all. Better replacements in p_debug.h
Diffstat (limited to 'src/gallium/winsys/xlib/xm_winsys_aub.c')
-rw-r--r-- | src/gallium/winsys/xlib/xm_winsys_aub.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/gallium/winsys/xlib/xm_winsys_aub.c b/src/gallium/winsys/xlib/xm_winsys_aub.c index d55d8c39eb..f42f7fcc5f 100644 --- a/src/gallium/winsys/xlib/xm_winsys_aub.c +++ b/src/gallium/winsys/xlib/xm_winsys_aub.c @@ -311,15 +311,6 @@ aub_i915_surface_release(struct pipe_winsys *winsys, struct pipe_surface **s) -static void -aub_printf( struct pipe_winsys *winsys, const char *fmtString, ... ) -{ - va_list args; - va_start( args, fmtString ); - vfprintf(stderr, fmtString, args); - va_end( args ); -} - static const char * aub_get_name( struct pipe_winsys *winsys ) { @@ -344,7 +335,6 @@ xmesa_create_pipe_winsys_aub( void ) iws->winsys.buffer_unmap = aub_buffer_unmap; iws->winsys.buffer_destroy = aub_buffer_destroy; iws->winsys.flush_frontbuffer = aub_flush_frontbuffer; - iws->winsys.printf = aub_printf; iws->winsys.get_name = aub_get_name; iws->winsys.surface_alloc = aub_i915_surface_alloc; |