diff options
author | Daniel Vetter <[email protected]> | 2017-04-06 08:27:47 +0200 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2017-04-10 14:33:17 -0700 |
commit | edd85c1f040b4d91ae31fd80fbba2554d55bc13d (patch) | |
tree | 6fcae4ed8dee9407d57737c1f04c3342f2462699 /src/mesa/drivers/dri/i965/brw_bufmgr.h | |
parent | 439edaa4b516b90d781428703988a200beaf138b (diff) |
i965/bufmgr: remove start_gtt_access
Iirc this was used by uxa for persistent mmpas of the frontbuffer. For
mesa all the set_domain stuff needed before a synchronized mmap is handled
within the bufmgr, so no reason ever to call this.
Inline the implementation into its only internal user.
Signed-off-by: Daniel Vetter <[email protected]>
Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_bufmgr.h')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_bufmgr.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_bufmgr.h b/src/mesa/drivers/dri/i965/brw_bufmgr.h index 53d51f2a59d..170909d0ba2 100644 --- a/src/mesa/drivers/dri/i965/brw_bufmgr.h +++ b/src/mesa/drivers/dri/i965/brw_bufmgr.h @@ -278,8 +278,6 @@ void *brw_bo_map__cpu(struct brw_bo *bo); void *brw_bo_map__gtt(struct brw_bo *bo); void *brw_bo_map__wc(struct brw_bo *bo); -void brw_bo_start_gtt_access(struct brw_bo *bo, int write_enable); - int brw_bo_wait(struct brw_bo *bo, int64_t timeout_ns); uint32_t brw_create_hw_context(struct brw_bufmgr *bufmgr); |