[Bf-blender-cvs] [80e720ee4af] master: Fix T84191: remove python API limits for Image.scale() dimensions

Philipp Oeser noreply at git.blender.org
Mon Jan 4 09:12:50 CET 2021


Commit: 80e720ee4af4acff8f5fac768a9458e6e43a5cc0
Author: Philipp Oeser
Date:   Mon Jan 4 19:05:46 2021 +1100
Branches: master
https://developer.blender.org/rB80e720ee4af4acff8f5fac768a9458e6e43a5cc0

Fix T84191: remove python API limits for Image.scale() dimensions

Since the introduction in 2c23bb838979131667c922df1f01738e02e6ca16,
these were set to 10000 each.

This seems like an arbitrary limit (BKE_image_scale / IMB_scaleImBuf
don't have limits and I couldn't spot similar size restrictions in
image relating functions), now match what we do for creating images
(rna_Main_images_new), use INT_MAX.

Ref D9950

===================================================================

M	source/blender/makesrna/intern/rna_image_api.c

===================================================================

diff --git a/source/blender/makesrna/intern/rna_image_api.c b/source/blender/makesrna/intern/rna_image_api.c
index f93738838de..987517320f9 100644
--- a/source/blender/makesrna/intern/rna_image_api.c
+++ b/source/blender/makesrna/intern/rna_image_api.c
@@ -322,9 +322,9 @@ void RNA_api_image(StructRNA *srna)
   func = RNA_def_function(srna, "scale", "rna_Image_scale");
   RNA_def_function_ui_description(func, "Scale the image in pixels");
   RNA_def_function_flag(func, FUNC_USE_REPORTS);
-  parm = RNA_def_int(func, "width", 1, 1, 10000, "", "Width", 1, 10000);
+  parm = RNA_def_int(func, "width", 1, 1, INT_MAX, "", "Width", 1, INT_MAX);
   RNA_def_parameter_flags(parm, 0, PARM_REQUIRED);
-  parm = RNA_def_int(func, "height", 1, 1, 10000, "", "Height", 1, 10000);
+  parm = RNA_def_int(func, "height", 1, 1, INT_MAX, "", "Height", 1, INT_MAX);
   RNA_def_parameter_flags(parm, 0, PARM_REQUIRED);
 
   func = RNA_def_function(srna, "gl_touch", "rna_Image_gl_touch");



More information about the Bf-blender-cvs mailing list