diff options
author | Matt Turner <[email protected]> | 2017-07-06 21:28:10 -0700 |
---|---|---|
committer | Matt Turner <[email protected]> | 2017-08-29 15:20:57 -0700 |
commit | 35902f47ebdf49fa79311c009d8710ac04067527 (patch) | |
tree | 5036739c7dc8e74f9fabbe452fa54f6035ffa69d /src | |
parent | 50e4099edff93b666325e4ba7e607eafc29d2e92 (diff) |
i965: Remove some 'inline' keywords
brw_texture_view_sane() is only used by an assert()...
No difference in the resulting binary with gcc-6.3.0 or clang-4.0.
Reviewed-by: Emil Velikov <[email protected]>
Reviewed-by: Eric Engestrom <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/drivers/dri/i965/genX_state_upload.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/mesa/drivers/dri/i965/genX_state_upload.c b/src/mesa/drivers/dri/i965/genX_state_upload.c index 75936632605..07553407102 100644 --- a/src/mesa/drivers/dri/i965/genX_state_upload.c +++ b/src/mesa/drivers/dri/i965/genX_state_upload.c @@ -100,7 +100,7 @@ __gen_combine_address(struct brw_context *brw, void *location, } } -static inline struct brw_address +static struct brw_address rw_bo(struct brw_bo *bo, uint32_t offset) { return (struct brw_address) { @@ -110,7 +110,7 @@ rw_bo(struct brw_bo *bo, uint32_t offset) }; } -static inline struct brw_address +static struct brw_address ro_bo(struct brw_bo *bo, uint32_t offset) { return (struct brw_address) { @@ -119,7 +119,7 @@ ro_bo(struct brw_bo *bo, uint32_t offset) }; } -static inline struct brw_address +static struct brw_address ggtt_bo(struct brw_bo *bo, uint32_t offset) { return (struct brw_address) { @@ -130,13 +130,13 @@ ggtt_bo(struct brw_bo *bo, uint32_t offset) } #if GEN_GEN == 4 -static inline struct brw_address +static struct brw_address KSP(struct brw_context *brw, uint32_t offset) { return ro_bo(brw->cache.bo, offset); } #else -static inline uint32_t +static uint32_t KSP(struct brw_context *brw, uint32_t offset) { return offset; @@ -2201,7 +2201,7 @@ const struct brw_tracked_state genX(cc_vp) = { /* ---------------------------------------------------------------------- */ -static inline void +static void set_scissor_bits(const struct gl_context *ctx, int i, bool render_to_fbo, unsigned fb_width, unsigned fb_height, struct GENX(SCISSOR_RECT) *sc) @@ -3656,7 +3656,7 @@ genX(upload_3dstate_so_buffers)(struct brw_context *brw) #endif } -static inline bool +static bool query_active(struct gl_query_object *q) { return q && q->Active; |