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>2017-01-10 20:17:29 +0300
committerDalai Felinto <dfelinto@gmail.com>2017-01-10 20:36:00 +0300
commit9533eb49083e0290097d078d41e5db542559c5b0 (patch)
tree8474dd6e5854eda9724fcd2eb7ce247a1fe54e93 /source/blender/gpu/GPU_viewport.h
parent5ed5ed59c36695882ea2b6880abd5cd996fe2416 (diff)
Fix warnings (mostly unused arguments)
Diffstat (limited to 'source/blender/gpu/GPU_viewport.h')
-rw-r--r--source/blender/gpu/GPU_viewport.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/gpu/GPU_viewport.h b/source/blender/gpu/GPU_viewport.h
index e2519484eb4..fce509377ab 100644
--- a/source/blender/gpu/GPU_viewport.h
+++ b/source/blender/gpu/GPU_viewport.h
@@ -41,7 +41,7 @@ GPUViewport *GPU_viewport_create(void);
void GPU_viewport_free(GPUViewport *viewport);
/* debug */
-bool GPU_viewport_debug_depth_create(GPUViewport *viewport, int width, int height, int samples, char err_out[256]);
+bool GPU_viewport_debug_depth_create(GPUViewport *viewport, int width, int height, char err_out[256]);
void GPU_viewport_debug_depth_free(GPUViewport *viewport);
void GPU_viewport_debug_depth_store(GPUViewport *viewport, const int x, const int y);
void GPU_viewport_debug_depth_draw(GPUViewport *viewport, const float znear, const float zfar);