diff options
author | Brian Paul <[email protected]> | 2014-08-13 16:30:48 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2014-08-14 08:53:45 -0600 |
commit | bfb6b7666534479324f5c13f25330cc9a5d0d818 (patch) | |
tree | 7bb8eb69b9cc89ea52c13ba0421e25d48a4d8179 /src/gallium/drivers/svga | |
parent | 478f82737c4f7eb4d2dbb9a0e19f95044cca1d19 (diff) |
svga: remove some unneeded INLINE qualifiers
Trivial.
Diffstat (limited to 'src/gallium/drivers/svga')
-rw-r--r-- | src/gallium/drivers/svga/svga_resource_texture.c | 4 | ||||
-rw-r--r-- | src/gallium/drivers/svga/svga_screen_cache.c | 4 | ||||
-rw-r--r-- | 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); |