diff options
author | Kenneth Graunke <[email protected]> | 2013-12-02 13:39:40 -0800 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2013-12-05 13:59:18 -0800 |
commit | 26f3ff8a916d7315b2d6d23ee9e52d946b68a136 (patch) | |
tree | 12748260a5db6bab0f6707be1b49522732ad8b64 /src/mesa/drivers/dri/i965/intel_pixel_bitmap.c | |
parent | 11d9af7c0ab76c551e676c5ce0f0f369d7fc9f97 (diff) |
i965: Replace non-standard INLINE macro with "inline".
These are identical: main/compiler.h defines INLINE to "inline".
Signed-off-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/i965/intel_pixel_bitmap.c')
-rw-r--r-- | src/mesa/drivers/dri/i965/intel_pixel_bitmap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/intel_pixel_bitmap.c b/src/mesa/drivers/dri/i965/intel_pixel_bitmap.c index f45b4a85e58..6858c7d54cd 100644 --- a/src/mesa/drivers/dri/i965/intel_pixel_bitmap.c +++ b/src/mesa/drivers/dri/i965/intel_pixel_bitmap.c @@ -158,7 +158,7 @@ static GLuint get_bitmap_rect(GLsizei width, GLsizei height, * Returns the low Y value of the vertical range given, flipped according to * whether the framebuffer is or not. */ -static INLINE int +static inline int y_flip(struct gl_framebuffer *fb, int y, int height) { if (_mesa_is_user_fbo(fb)) |