Module: Mesa Branch: gallium-xlib-rework Commit: a2d5031b1e133523591f1683527c2c96f58aa606 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=a2d5031b1e133523591f1683527c2c96f58aa606
Author: Keith Whitwell <[email protected]> Date: Mon Jan 12 19:38:39 2009 +0000 dri: make dri_display_surface static --- src/gallium/state_trackers/glx/dri/dri_drawable.c | 2 +- src/gallium/state_trackers/glx/dri/dri_drawable.h | 5 ----- 2 files changed, 1 insertions(+), 6 deletions(-) diff --git a/src/gallium/state_trackers/glx/dri/dri_drawable.c b/src/gallium/state_trackers/glx/dri/dri_drawable.c index 53ac3db..d5006cc 100644 --- a/src/gallium/state_trackers/glx/dri/dri_drawable.c +++ b/src/gallium/state_trackers/glx/dri/dri_drawable.c @@ -116,7 +116,7 @@ blit_swapbuffers(__DRIdrawablePrivate *dPriv, * \param surf the surface to display * \param rect optional subrect of surface to display (may be NULL). */ -void +static void dri_display_surface(__DRIdrawablePrivate *dPriv, struct pipe_surface *source, const drm_clip_rect_t *rect) diff --git a/src/gallium/state_trackers/glx/dri/dri_drawable.h b/src/gallium/state_trackers/glx/dri/dri_drawable.h index cf6b3c8..1001bb8 100644 --- a/src/gallium/state_trackers/glx/dri/dri_drawable.h +++ b/src/gallium/state_trackers/glx/dri/dri_drawable.h @@ -59,11 +59,6 @@ dri_drawable(__DRIdrawablePrivate * driDrawPriv) */ void -dri_display_surface(__DRIdrawablePrivate * dPriv, - struct pipe_surface *surf, - const drm_clip_rect_t * rect); - -void dri_swap_buffers(__DRIdrawablePrivate * dPriv); void _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
