u_gralloc: Remove inline modifiers from the functions

Suggested-by: Chia-I Wu <olvaffe@gmail.com>
Signed-off-by: Roman Stratiienko <r.stratiienko@gmail.com>
Reviewed-by: Chia-I Wu <olvaffe@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/25256>
This commit is contained in:
Roman Stratiienko
2023-09-16 01:26:33 +03:00
committed by Marge Bot
parent 446b0fe8c9
commit 28b21fae6e
+3 -3
View File
@@ -100,7 +100,7 @@ u_gralloc_destroy(struct u_gralloc **gralloc NONNULL)
*gralloc = NULL;
}
inline int
int
u_gralloc_get_buffer_basic_info(struct u_gralloc *gralloc NONNULL,
struct u_gralloc_buffer_handle *hnd NONNULL,
struct u_gralloc_buffer_basic_info *out
@@ -119,7 +119,7 @@ u_gralloc_get_buffer_basic_info(struct u_gralloc *gralloc NONNULL,
return 0;
}
inline int
int
u_gralloc_get_buffer_color_info(struct u_gralloc *gralloc NONNULL,
struct u_gralloc_buffer_handle *hnd NONNULL,
struct u_gralloc_buffer_color_info *out
@@ -141,7 +141,7 @@ u_gralloc_get_buffer_color_info(struct u_gralloc *gralloc NONNULL,
return 0;
}
inline int
int
u_gralloc_get_front_rendering_usage(struct u_gralloc *gralloc NONNULL,
uint64_t *out_usage NONNULL)
{