ilo: remove intel_winsys_enable_reuse()

It should be an (winsys) implementation detail.
This commit is contained in:
Chia-I Wu 2014-03-08 13:50:53 +08:00
parent 56b1be4399
commit f2aabecbb0
3 changed files with 3 additions and 13 deletions

View File

@ -729,8 +729,6 @@ ilo_screen_create(struct intel_winsys *ws)
is->winsys = ws;
intel_winsys_enable_reuse(is->winsys);
info = intel_winsys_get_info(is->winsys);
if (!init_dev(&is->dev, info)) {
FREE(is);

View File

@ -1,7 +1,7 @@
/*
* Mesa 3-D graphics library
*
* Copyright (C) 2012-2013 LunarG, Inc.
* Copyright (C) 2012-2014 LunarG, Inc.
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
@ -144,6 +144,7 @@ intel_winsys_create_for_fd(int fd)
}
drm_intel_bufmgr_gem_enable_fenced_relocs(winsys->bufmgr);
drm_intel_bufmgr_gem_enable_reuse(winsys->bufmgr);
return winsys;
}
@ -164,12 +165,6 @@ intel_winsys_get_info(const struct intel_winsys *winsys)
return &winsys->info;
}
void
intel_winsys_enable_reuse(struct intel_winsys *winsys)
{
drm_intel_bufmgr_gem_enable_reuse(winsys->bufmgr);
}
struct intel_context *
intel_winsys_create_context(struct intel_winsys *winsys)
{

View File

@ -1,7 +1,7 @@
/*
* Mesa 3-D graphics library
*
* Copyright (C) 2012-2013 LunarG, Inc.
* Copyright (C) 2012-2014 LunarG, Inc.
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
@ -88,9 +88,6 @@ intel_winsys_destroy(struct intel_winsys *winsys);
const struct intel_winsys_info *
intel_winsys_get_info(const struct intel_winsys *winsys);
void
intel_winsys_enable_reuse(struct intel_winsys *winsys);
struct intel_context *
intel_winsys_create_context(struct intel_winsys *winsys);