svga: remove some unneeded INLINE qualifiers
authorBrian Paul <brianp@vmware.com>
Wed, 13 Aug 2014 22:30:48 +0000 (16:30 -0600)
committerBrian Paul <brianp@vmware.com>
Thu, 14 Aug 2014 14:53:45 +0000 (08:53 -0600)
Trivial.

src/gallium/drivers/svga/svga_resource_texture.c
src/gallium/drivers/svga/svga_screen_cache.c
src/gallium/drivers/svga/svga_surface.c

index 75e27458e9c198995038a570fd3d8a2e72c8ff68..c975a192e497e220365f8f9214d23be878548ac0 100644 (file)
@@ -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,
index 307af1b6bf2cc6984ed34fb871e45056516c254b..f63f783618709afccbaf54973f9eec2e09015bd9 100644 (file)
@@ -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)
index 616312010fb3a458811dd3d6a2bc198015a14c1a..85d015460070f871c439cb7805be6ea731d89cd9 100644 (file)
@@ -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);