From bfb6b7666534479324f5c13f25330cc9a5d0d818 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Wed, 13 Aug 2014 16:30:48 -0600 Subject: [PATCH] svga: remove some unneeded INLINE qualifiers Trivial. --- src/gallium/drivers/svga/svga_resource_texture.c | 4 ++-- src/gallium/drivers/svga/svga_screen_cache.c | 4 ++-- src/gallium/drivers/svga/svga_surface.c | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/gallium/drivers/svga/svga_resource_texture.c b/src/gallium/drivers/svga/svga_resource_texture.c index 75e27458e9c..c975a192e49 100644 --- a/src/gallium/drivers/svga/svga_resource_texture.c +++ b/src/gallium/drivers/svga/svga_resource_texture.c @@ -52,7 +52,7 @@ #define SVGA3D_SURFACE_HINT_SCANOUT (1 << 9) -static INLINE void +static void svga_transfer_dma_band(struct svga_context *svga, struct svga_transfer *st, SVGA3dTransferType transfer, @@ -104,7 +104,7 @@ svga_transfer_dma_band(struct svga_context *svga, } -static INLINE void +static void svga_transfer_dma(struct svga_context *svga, struct svga_transfer *st, SVGA3dTransferType transfer, diff --git a/src/gallium/drivers/svga/svga_screen_cache.c b/src/gallium/drivers/svga/svga_screen_cache.c index 307af1b6bf2..f63f7836187 100644 --- a/src/gallium/drivers/svga/svga_screen_cache.c +++ b/src/gallium/drivers/svga/svga_screen_cache.c @@ -88,7 +88,7 @@ svga_screen_cache_bucket(const struct svga_host_surface_cache_key *key) * found, remove it from the cache and return the surface pointer. * Return NULL otherwise. */ -static INLINE struct svga_winsys_surface * +static struct svga_winsys_surface * svga_screen_cache_lookup(struct svga_screen *svgascreen, const struct svga_host_surface_cache_key *key) { @@ -197,7 +197,7 @@ svga_screen_cache_shrink(struct svga_screen *svgascreen, /** * Transfers a handle reference. */ -static INLINE void +static void svga_screen_cache_add(struct svga_screen *svgascreen, const struct svga_host_surface_cache_key *key, struct svga_winsys_surface **p_handle) diff --git a/src/gallium/drivers/svga/svga_surface.c b/src/gallium/drivers/svga/svga_surface.c index 616312010fb..85d01546007 100644 --- a/src/gallium/drivers/svga/svga_surface.c +++ b/src/gallium/drivers/svga/svga_surface.c @@ -290,7 +290,7 @@ svga_surface_destroy(struct pipe_context *pipe, } -static INLINE void +static void svga_mark_surface_dirty(struct pipe_surface *surf) { struct svga_surface *s = svga_surface(surf); -- 2.30.2