=?UTF-8?Q?Stefan=20D=C3=B6singer=20?=: wined3d: Rename surface_load_pbo to surface_create_pbo.

Alexandre Julliard julliard at winehq.org
Wed Dec 11 13:05:46 CST 2013


Module: wine
Branch: master
Commit: 78fda5cea083ce62c28fceb873f4372863ca0fa6
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=78fda5cea083ce62c28fceb873f4372863ca0fa6

Author: Stefan Dösinger <stefan at codeweavers.com>
Date:   Wed Dec 11 12:22:21 2013 +0100

wined3d: Rename surface_load_pbo to surface_create_pbo.

---

 dlls/wined3d/surface.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/dlls/wined3d/surface.c b/dlls/wined3d/surface.c
index 0c3df16..ec9ac6c 100644
--- a/dlls/wined3d/surface.c
+++ b/dlls/wined3d/surface.c
@@ -545,7 +545,7 @@ static BOOL surface_need_pbo(const struct wined3d_surface *surface, const struct
     return TRUE;
 }
 
-static void surface_load_pbo(struct wined3d_surface *surface, const struct wined3d_gl_info *gl_info)
+static void surface_create_pbo(struct wined3d_surface *surface, const struct wined3d_gl_info *gl_info)
 {
     struct wined3d_context *context;
     GLenum error;
@@ -586,7 +586,7 @@ static void surface_prepare_system_memory(struct wined3d_surface *surface)
     TRACE("surface %p.\n", surface);
 
     if (!(surface->flags & SFLAG_PBO) && surface_need_pbo(surface, gl_info))
-        surface_load_pbo(surface, gl_info);
+        surface_create_pbo(surface, gl_info);
     else if (!(surface->resource.allocatedMemory || surface->flags & SFLAG_PBO))
     {
         /* Whatever surface we have, make sure that there is memory allocated
@@ -5244,7 +5244,7 @@ HRESULT surface_load_location(struct wined3d_surface *surface, DWORD location)
 
         if (location == SFLAG_INSYSMEM && !(surface->flags & SFLAG_PBO)
                 && surface_need_pbo(surface, gl_info))
-            surface_load_pbo(surface, gl_info);
+            surface_create_pbo(surface, gl_info);
 
         return WINED3D_OK;
     }




More information about the wine-cvs mailing list