summaryrefslogtreecommitdiff
path: root/src/gallium/drivers
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2014-08-13 16:30:48 -0600
committerBrian Paul <brianp@vmware.com>2014-08-14 08:53:45 -0600
commitbfb6b7666534479324f5c13f25330cc9a5d0d818 (patch)
tree7bb8eb69b9cc89ea52c13ba0421e25d48a4d8179 /src/gallium/drivers
parent478f82737c4f7eb4d2dbb9a0e19f95044cca1d19 (diff)
svga: remove some unneeded INLINE qualifiers
Trivial.
Diffstat (limited to 'src/gallium/drivers')
-rw-r--r--src/gallium/drivers/svga/svga_resource_texture.c4
-rw-r--r--src/gallium/drivers/svga/svga_screen_cache.c4
-rw-r--r--src/gallium/drivers/svga/svga_surface.c2
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);