diff options
author | Kenneth Graunke <[email protected]> | 2017-04-10 23:08:23 -0700 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2017-04-11 21:07:45 -0700 |
commit | 444ab8126d38bfb236b272226f0a57dafd0ac6de (patch) | |
tree | 4b84dcd2d1a33b942d0e2e15611876e9af4eefa8 /src/mesa/drivers/dri/i965/brw_bufmgr.h | |
parent | 14fc188460ae33b8cbbbffdb4f26d470eb393c81 (diff) |
i965/drm: Make stride/pitch a uint32_t.
struct drm_i915_gem_set_tiling's stride field is a __u32.
intel_mipmap_tree::stride is a uint32_t. Using unsigned long just
doesn't make sense. Switching also lets us drop many pointless
locals that only existed to deal with the type mismatch.
Reviewed-by: Chris Wilson <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_bufmgr.h')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_bufmgr.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_bufmgr.h b/src/mesa/drivers/dri/i965/brw_bufmgr.h index 2c221850afc..93a929d20e3 100644 --- a/src/mesa/drivers/dri/i965/brw_bufmgr.h +++ b/src/mesa/drivers/dri/i965/brw_bufmgr.h @@ -109,7 +109,7 @@ struct brw_bo { */ uint32_t tiling_mode; uint32_t swizzle_mode; - unsigned long stride; + uint32_t stride; time_t free_time; @@ -161,7 +161,7 @@ struct brw_bo *brw_bo_alloc_tiled(struct brw_bufmgr *bufmgr, const char *name, int x, int y, int cpp, uint32_t tiling_mode, - unsigned long *pitch, + uint32_t *pitch, unsigned long flags); /** Takes a reference on a buffer object */ |