diff options
Diffstat (limited to 'src/mesa/main/fbobject.h')
-rw-r--r-- | src/mesa/main/fbobject.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/main/fbobject.h b/src/mesa/main/fbobject.h index 7eb20050209..0a70a436dea 100644 --- a/src/mesa/main/fbobject.h +++ b/src/mesa/main/fbobject.h @@ -50,7 +50,7 @@ _mesa_get_attachment(struct gl_context *ctx, struct gl_framebuffer *fb, /** Return the texture image for a renderbuffer attachment */ -static INLINE struct gl_texture_image * +static inline struct gl_texture_image * _mesa_get_attachment_teximage(struct gl_renderbuffer_attachment *att) { assert(att->Type == GL_TEXTURE); @@ -59,7 +59,7 @@ _mesa_get_attachment_teximage(struct gl_renderbuffer_attachment *att) /** Return the (const) texture image for a renderbuffer attachment */ -static INLINE const struct gl_texture_image * +static inline const struct gl_texture_image * _mesa_get_attachment_teximage_const(const struct gl_renderbuffer_attachment *att) { assert(att->Type == GL_TEXTURE); |