Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDalai Felinto <dfelinto@gmail.com>2018-06-08 16:51:25 +0300
committerDalai Felinto <dfelinto@gmail.com>2018-06-08 17:20:34 +0300
commit856a79e1fbfef207ef53200d102e00b413279c6c (patch)
tree8b42d96b13919abec751ccbf3b5591ddcfab6236 /source/blender/gpu/intern/gpu_texture.c
parentcbbf8bbbb4fac21d5148201d45053e4f85ed778f (diff)
Rename: GPU_texture_orphans
Diffstat (limited to 'source/blender/gpu/intern/gpu_texture.c')
-rw-r--r--source/blender/gpu/intern/gpu_texture.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/gpu/intern/gpu_texture.c b/source/blender/gpu/intern/gpu_texture.c
index dadd8c441f4..aac75014b3e 100644
--- a/source/blender/gpu/intern/gpu_texture.c
+++ b/source/blender/gpu/intern/gpu_texture.c
@@ -1124,12 +1124,12 @@ void GPU_texture_free(GPUTexture *tex)
}
}
-void GPU_texture_init_orphans(void)
+void GPU_texture_orphans_init(void)
{
BLI_mutex_init(&g_orphan_lock);
}
-void GPU_texture_delete_orphans(void)
+void GPU_texture_orphans_delete(void)
{
BLI_mutex_lock(&g_orphan_lock);
LinkData *link;
@@ -1140,9 +1140,9 @@ void GPU_texture_delete_orphans(void)
BLI_mutex_unlock(&g_orphan_lock);
}
-void GPU_texture_exit_orphans(void)
+void GPU_texture_orphans_exit(void)
{
- GPU_texture_delete_orphans();
+ GPU_texture_orphans_delete();
BLI_mutex_end(&g_orphan_lock);
}