diff options
author | Daniel Vetter <[email protected]> | 2017-04-06 08:23:28 +0200 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2017-04-10 14:33:14 -0700 |
commit | 6308121475d4718c9c543d1f7a95d832ff55c2d7 (patch) | |
tree | c9afebaa4bf27259ae871a6dae7645efe587460c /src/mesa/drivers/dri/i965/brw_bufmgr.c | |
parent | 538fa87f40709f2cafb561056ea3ca5c46f8c85e (diff) |
i965/bufmgr: Delete alloc_for_render
Entirely unused, mesa instead used the BO_ALLOC_FOR_RENDER flag.
Signed-off-by: Daniel Vetter <[email protected]>
Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_bufmgr.c')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_bufmgr.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_bufmgr.c b/src/mesa/drivers/dri/i965/brw_bufmgr.c index b12cd3acfc3..01cccf6ffd9 100644 --- a/src/mesa/drivers/dri/i965/brw_bufmgr.c +++ b/src/mesa/drivers/dri/i965/brw_bufmgr.c @@ -376,15 +376,6 @@ err: } struct brw_bo * -brw_bo_alloc_for_render(struct brw_bufmgr *bufmgr, - const char *name, - unsigned long size, unsigned int alignment) -{ - return bo_alloc_internal(bufmgr, name, size, BO_ALLOC_FOR_RENDER, - I915_TILING_NONE, 0, alignment); -} - -struct brw_bo * brw_bo_alloc(struct brw_bufmgr *bufmgr, const char *name, unsigned long size, unsigned int alignment) { |