ilo: remove intel_winsys_enable_reuse()
authorChia-I Wu <olvaffe@gmail.com>
Sat, 8 Mar 2014 05:50:53 +0000 (13:50 +0800)
committerChia-I Wu <olvaffe@gmail.com>
Mon, 10 Mar 2014 08:42:41 +0000 (16:42 +0800)
It should be an (winsys) implementation detail.

src/gallium/drivers/ilo/ilo_screen.c
src/gallium/winsys/intel/drm/intel_drm_winsys.c
src/gallium/winsys/intel/intel_winsys.h

index 7323c3e2d9fd3fa6ed391c2387163dcceb03cfc1..5d1243d1da3b896adf8fb6404ac1cc5c42fe2b44 100644 (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);
index d7ec919130bbb7b5b6488e60f5d182def53fa043..fae47eacaf8e8403295f95ce24d0ce69752dfcd5 100644 (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)
 {
index 89df2a1693533968a93eeee167a213bae6ab841c..8cfbb49bdf952c40d8995c6b531ee701cd219bde 100644 (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);