summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorBrian Paul <[email protected]>2012-08-02 09:40:41 -0600
committerBrian Paul <[email protected]>2012-08-02 09:40:41 -0600
commitdaf4254d07328381ed013aac25e25d6021fbfd14 (patch)
tree1f567be40659ce157053753fe30c43cfeaf77ac5 /src
parent421f134028ea2930cb80c7189e552320a8a6e49f (diff)
svga: remove questionable INLINE qualifiers
Diffstat (limited to 'src')
-rw-r--r--src/gallium/drivers/svga/svga_resource_buffer_upload.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/drivers/svga/svga_resource_buffer_upload.c b/src/gallium/drivers/svga/svga_resource_buffer_upload.c
index 3ae61e2eea3..f70a3c61c52 100644
--- a/src/gallium/drivers/svga/svga_resource_buffer_upload.c
+++ b/src/gallium/drivers/svga/svga_resource_buffer_upload.c
@@ -410,7 +410,7 @@ svga_buffer_add_range(struct svga_buffer *sbuf,
/**
* Copy the contents of the malloc buffer to a hardware buffer.
*/
-static INLINE enum pipe_error
+static enum pipe_error
svga_buffer_update_hw(struct svga_screen *ss, struct svga_buffer *sbuf)
{
assert(!sbuf->user);
@@ -460,7 +460,7 @@ svga_buffer_update_hw(struct svga_screen *ss, struct svga_buffer *sbuf)
*
* Used when the buffer is too big to fit in the GMR aperture.
*/
-static INLINE enum pipe_error
+static enum pipe_error
svga_buffer_upload_piecewise(struct svga_screen *ss,
struct svga_context *svga,
struct svga_buffer *sbuf)