From 5ef44dd83f5864d6b5df09e07ed4d1b9357a1214 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Wed, 3 Jun 2020 01:05:25 +1000 Subject: Cleanup: unused argument --- source/blender/gpu/GPU_draw.h | 2 +- source/blender/gpu/intern/gpu_draw.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'source/blender/gpu') diff --git a/source/blender/gpu/GPU_draw.h b/source/blender/gpu/GPU_draw.h index 3fb48292000..ab507d852e8 100644 --- a/source/blender/gpu/GPU_draw.h +++ b/source/blender/gpu/GPU_draw.h @@ -50,7 +50,7 @@ void GPU_paint_set_mipmap(struct Main *bmain, bool mipmap); /* Anisotropic filtering settings * - these will free textures on changes */ -void GPU_set_anisotropic(struct Main *bmain, float value); +void GPU_set_anisotropic(float value); float GPU_get_anisotropic(void); /* Image updates and free diff --git a/source/blender/gpu/intern/gpu_draw.c b/source/blender/gpu/intern/gpu_draw.c index 7a9b4bafc74..1c346217e9f 100644 --- a/source/blender/gpu/intern/gpu_draw.c +++ b/source/blender/gpu/intern/gpu_draw.c @@ -158,7 +158,7 @@ static GLenum gpu_get_mipmap_filter(bool mag) } /* Anisotropic filtering settings */ -void GPU_set_anisotropic(Main *bmain, float value) +void GPU_set_anisotropic(float value) { if (GTS.anisotropic != value) { GPU_samplers_free(); -- cgit v1.2.3