diff options
author | José Fonseca <[email protected]> | 2009-09-24 15:27:19 +0100 |
---|---|---|
committer | José Fonseca <[email protected]> | 2009-09-24 15:28:55 +0100 |
commit | 9659aa6482291d1530c74450612bcd952f542e01 (patch) | |
tree | 15395f630d496b11b8754bac1a6f97f909a32c3b /src/gallium | |
parent | e8e6d8853df19f7a32fb0e4f670259ee65e88b29 (diff) |
softpipe: Use portable INLINE macro.
Diffstat (limited to 'src/gallium')
-rw-r--r-- | src/gallium/drivers/softpipe/sp_tex_sample.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/softpipe/sp_tex_sample.c b/src/gallium/drivers/softpipe/sp_tex_sample.c index 2092a69740e..c22ee86b66c 100644 --- a/src/gallium/drivers/softpipe/sp_tex_sample.c +++ b/src/gallium/drivers/softpipe/sp_tex_sample.c @@ -983,7 +983,7 @@ img_filter_2d_nearest(struct tgsi_sampler *tgsi_sampler, } -static inline union tex_tile_address +static INLINE union tex_tile_address face(union tex_tile_address addr, unsigned face ) { addr.bits.face = face; |