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:
authorAntony Riakiotakis <kalast@gmail.com>2014-08-27 17:07:57 +0400
committerAntony Riakiotakis <kalast@gmail.com>2014-08-27 17:07:57 +0400
commit4e3f76e06b6654d4951a54804eaa808b040ef942 (patch)
treee4fbae0ffea2b37f35cf481243a4d696f2d805ed /source/blender/editors/sculpt_paint/paint_intern.h
parentfe7de92c47b79aed701d5c0042a7f22bdcea545a (diff)
Fix T41406:
Disallow kernels bigger than 2x2 for blur/sharpen in projective painting due to performance considerations.
Diffstat (limited to 'source/blender/editors/sculpt_paint/paint_intern.h')
-rw-r--r--source/blender/editors/sculpt_paint/paint_intern.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/sculpt_paint/paint_intern.h b/source/blender/editors/sculpt_paint/paint_intern.h
index d0cd59d7be6..36f16674c4b 100644
--- a/source/blender/editors/sculpt_paint/paint_intern.h
+++ b/source/blender/editors/sculpt_paint/paint_intern.h
@@ -293,7 +293,7 @@ typedef struct {
enum BlurKernelType;
/* can be extended to other blur kernels later */
-BlurKernel *paint_new_blur_kernel(struct Brush *br);
+BlurKernel *paint_new_blur_kernel(struct Brush *br, bool proj);
void paint_delete_blur_kernel(BlurKernel *);
/* paint curve defines */