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 <dalai@blender.org>2020-02-25 19:18:25 +0300
committerDalai Felinto <dalai@blender.org>2020-02-25 19:21:01 +0300
commit280d2a9a17aeef56a590ab18ee150142b4fadfcd (patch)
tree520f5ccc7d6df4bcdcc6414f2d8ac4842a60eab4
parenta93043153a35200b62513b4749ab1018b354918a (diff)
Cleanup: Silence compilation warnings (unused variables)
-rw-r--r--source/blender/makesrna/intern/rna_image.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_image.c b/source/blender/makesrna/intern/rna_image.c
index 94b5786665c..b8174f094ec 100644
--- a/source/blender/makesrna/intern/rna_image.c
+++ b/source/blender/makesrna/intern/rna_image.c
@@ -193,7 +193,9 @@ static char *rna_ImageUser_path(PointerRNA *ptr)
return BLI_strdup("");
}
-static void rna_Image_gpu_texture_update(Main *bmain, Scene *scene, PointerRNA *ptr)
+static void rna_Image_gpu_texture_update(Main *UNUSED(bmain),
+ Scene *UNUSED(scene),
+ PointerRNA *ptr)
{
Image *ima = (Image *)ptr->owner_id;