c434782e3a 
					 
					
						
						
							
							File headers: SPDX License migration  
						
						... 
						
						
						
						Use a shorter/simpler license convention, stops the header taking so
much space.
Follow the SPDX license specification: https://spdx.org/licenses 
- C/C++/objc/objc++
- Python
- Shell Scripts
- CMake, GNUmakefile
While most of the source tree has been included
- `./extern/` was left out.
- `./intern/cycles` & `./intern/atomic` are also excluded because they
  use different header conventions.
doc/license/SPDX-license-identifiers.txt has been added to list SPDX all
used identifiers.
See P2788 for the script that automated these edits.
Reviewed By: brecht, mont29, sergey
Ref D14069 
						
						
					 
					
						2022-02-11 09:14:36 +11:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						58eacb8e7c 
					 
					
						
						
							
							Cleanup: pass sizeof array element to PyC_AsArray  
						
						... 
						
						
						
						Replace the is_double argument which was only used for single/double
precision floats.
This allows supporting different sized int types more easily. 
						
						
					 
					
						2021-07-27 22:36:01 +10:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						9b89de2571 
					 
					
						
						
							
							Cleanup: consistent use of tags: NOTE/TODO/FIXME/XXX  
						
						... 
						
						
						
						Also use doxy style function reference `#` prefix chars when
referencing identifiers. 
						
						
					 
					
						2021-07-04 00:43:40 +10:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						1d8648b13a 
					 
					
						
						
							
							Cleanup: repeated terms in code comments & error messages  
						
						
						
						
					 
					
						2021-06-28 15:46:08 +10:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						5df6b4004c 
					 
					
						
						
							
							Docs: improve imbuf.write docstring  
						
						... 
						
						
						
						The file path wasn't documented as being optional. 
						
						
					 
					
						2021-06-21 12:25:36 +10:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						f29a738e23 
					 
					
						
						
							
							PyAPI: use keyword only arguments  
						
						... 
						
						
						
						Use keyword only arguments for the following functions.
- addon_utils.module_bl_info 2nd arg `info_basis`.
- addon_utils.modules 1st `module_cache`, 2nd arg `refresh`.
- addon_utils.modules_refresh 1st arg `module_cache`.
- bl_app_template_utils.activate 1nd arg `template_id`.
- bl_app_template_utils.import_from_id 2nd arg `ignore_not_found`.
- bl_app_template_utils.import_from_path 2nd arg `ignore_not_found`.
- bl_keymap_utils.keymap_from_toolbar.generate 2nd & 3rd args `use_fallback_keys` & `use_reset`.
- bl_keymap_utils.platform_helpers.keyconfig_data_oskey_from_ctrl 2nd arg `filter_fn`.
- bl_ui_utils.bug_report_url.url_prefill_from_blender 1st arg `addon_info`.
- bmesh.types.BMFace.copy 1st & 2nd args `verts`, `edges`.
- bmesh.types.BMesh.calc_volume 1st arg `signed`.
- bmesh.types.BMesh.from_mesh 2nd..4th args `face_normals`, `use_shape_key`, `shape_key_index`.
- bmesh.types.BMesh.from_object 3rd & 4th args `cage`, `face_normals`.
- bmesh.types.BMesh.transform 2nd arg `filter`.
- bmesh.types.BMesh.update_edit_mesh 2nd & 3rd args `loop_triangles`, `destructive`.
- bmesh.types.{BMVertSeq,BMEdgeSeq,BMFaceSeq}.sort 1st & 2nd arg `key`, `reverse`.
- bmesh.utils.face_split 4th..6th args `coords`, `use_exist`, `example`.
- bpy.data.libraries.load 2nd..4th args `link`, `relative`, `assets_only`.
- bpy.data.user_map 1st..3rd args `subset`, `key_types, `value_types`.
- bpy.msgbus.subscribe_rna 5th arg `options`.
- bpy.path.abspath 2nd & 3rd args `start` & `library`.
- bpy.path.clean_name 2nd arg `replace`.
- bpy.path.ensure_ext 3rd arg `case_sensitive`.
- bpy.path.module_names 2nd arg `recursive`.
- bpy.path.relpath 2nd arg `start`.
- bpy.types.EditBone.transform 2nd & 3rd arg `scale`, `roll`.
- bpy.types.Operator.as_keywords 1st arg `ignore`.
- bpy.types.Struct.{keyframe_insert,keyframe_delete} 2nd..5th args `index`, `frame`, `group`, `options`.
- bpy.types.WindowManager.popup_menu 2nd & 3rd arg `title`, `icon`.
- bpy.types.WindowManager.popup_menu_pie 3rd & 4th arg `title`, `icon`.
- bpy.utils.app_template_paths 1st arg `subdir`.
- bpy.utils.app_template_paths 1st arg `subdir`.
- bpy.utils.blend_paths 1st..3rd args `absolute`, `packed`, `local`.
- bpy.utils.execfile 2nd arg `mod`.
- bpy.utils.keyconfig_set 2nd arg `report`.
- bpy.utils.load_scripts 1st & 2nd `reload_scripts` & `refresh_scripts`.
- bpy.utils.preset_find 3rd & 4th args `display_name`, `ext`.
- bpy.utils.resource_path 2nd & 3rd arg `major`, `minor`.
- bpy.utils.script_paths 1st..4th args `subdir`, `user_pref`, `check_all`, `use_user`.
- bpy.utils.smpte_from_frame 2nd & 3rd args `fps`, `fps_base`.
- bpy.utils.smpte_from_seconds 2nd & 3rd args `fps`, `fps_base`.
- bpy.utils.system_resource 2nd arg `subdir`.
- bpy.utils.time_from_frame 2nd & 3rd args `fps`, `fps_base`.
- bpy.utils.time_to_frame 2nd & 3rd args `fps`, `fps_base`.
- bpy.utils.units.to_string 4th..6th `precision`, `split_unit`, `compatible_unit`.
- bpy.utils.units.to_value 4th arg `str_ref_unit`.
- bpy.utils.user_resource 2nd & 3rd args `subdir`, `create`
- bpy_extras.view3d_utils.location_3d_to_region_2d 4th arg `default`.
- bpy_extras.view3d_utils.region_2d_to_origin_3d 4th arg `clamp`.
- gpu.offscreen.unbind 1st arg `restore`.
- gpu_extras.batch.batch_for_shader 4th arg `indices`.
- gpu_extras.batch.presets.draw_circle_2d 4th arg `segments`.
- gpu_extras.presets.draw_circle_2d 4th arg `segments`.
- imbuf.types.ImBuf.resize 2nd arg `resize`.
- imbuf.write 2nd arg `filepath`.
- mathutils.kdtree.KDTree.find 2nd arg `filter`.
- nodeitems_utils.NodeCategory 3rd & 4th arg `descriptions`, `items`.
- nodeitems_utils.NodeItem 2nd..4th args `label`, `settings`, `poll`.
- nodeitems_utils.NodeItemCustom 1st & 2nd arg `poll`, `draw`.
- rna_prop_ui.draw 5th arg `use_edit`.
- rna_prop_ui.rna_idprop_ui_get 2nd arg `create`.
- rna_prop_ui.rna_idprop_ui_prop_clear 3rd arg `remove`.
- rna_prop_ui.rna_idprop_ui_prop_get 3rd arg `create`.
- rna_xml.xml2rna 2nd arg `root_rna`.
- rna_xml.xml_file_write 4th arg `skip_typemap`. 
						
						
					 
					
						2021-06-09 03:05:44 +10:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						4d43683899 
					 
					
						
						
							
							PyAPI: ImBuf.copy now copies the underlying imbuf  
						
						... 
						
						
						
						Without this, copy wasn't useful. 
						
						
					 
					
						2021-04-08 20:19:26 +10:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						d5c6485372 
					 
					
						
						
							
							Cleanup: clang format  
						
						
						
						
					 
					
						2021-04-01 11:18:26 +11:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						3f47df577d 
					 
					
						
						
							
							Cleanup: use new BLI_assert_unreachable macro  
						
						
						
						
					 
					
						2021-03-24 12:38:08 +11:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						c47990f41c 
					 
					
						
						
							
							PyAPI: expose imbuf.types.ImBuf, include in API docs  
						
						... 
						
						
						
						Without this, the ImBuf type wasn't part of documentation. 
						
						
					 
					
						2021-02-25 12:04:23 +11:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						dae445d94a 
					 
					
						
						
							
							Fix T85573: Building with Python 3.10a5 fails  
						
						... 
						
						
						
						Replace deprecated _PyUnicode_AsString{AndSize} usage.
T83626 still needs to be resolved before 3.10 is usable. 
						
						
					 
					
						2021-02-13 23:09:55 +11:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						d21f445469 
					 
					
						
						
							
							PyAPI: remove Python 3.7x compatibility code  
						
						... 
						
						
						
						This removes Python version checks needed to build with 3.8+ and 3.7x.
Ref D10381 
						
						
					 
					
						2021-02-12 08:08:15 +11:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						b8e536f381 
					 
					
						
						
							
							Fix imbuf.new & resize allowing zero & negative dimensions  
						
						
						
						
					 
					
						2021-01-04 20:05:32 +11:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						a6285339ba 
					 
					
						
						
							
							Cleanup: remove unused optional argument to imbuf.new  
						
						... 
						
						
						
						While this didn't cause any problems, it was incorrect. 
						
						
					 
					
						2021-01-04 20:00:27 +11:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						c4d8f6a4a8 
					 
					
						
						
							
							Cleanup: clang-format  
						
						
						
						
					 
					
						2020-11-11 09:11:43 +11:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						cd9acfed4f 
					 
					
						
						
							
							Cleanup: use preprocessor version check for PyTypeObject declaration  
						
						... 
						
						
						
						While `tp_print` was deprecated, Python 3.8+ uses this for
'tp_vectorcall_offset' which wasn't stated in the comment from
efd71aad4f 
						
						
					 
					
						2020-11-11 09:11:21 +11:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						efa7aaa97f 
					 
					
						
						
							
							Cleanup: use const variables where possible in the Python API  
						
						
						
						
					 
					
						2020-08-20 16:10:13 +10:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						3d48d99647 
					 
					
						
						
							
							Cleanup: Python, Clang-Tidy else-after-return fixes  
						
						... 
						
						
						
						This addresses warnings from Clang-Tidy's `readability-else-after-return`
rule in the `source/blender/python` module.
No functional changes. 
						
						
					 
					
						2020-08-07 13:38:07 +02:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						2d1cce8331 
					 
					
						
						
							
							Cleanup: make format after SortedIncludes change  
						
						
						
						
					 
					
						2020-03-19 09:33:58 +01:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						9a9f39e466 
					 
					
						
						
							
							Cleanup: remove redundant 'char *' casts  
						
						
						
						
					 
					
						2019-12-20 10:42:57 +11:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						36b6fb5cd6 
					 
					
						
						
							
							Cleanup: warnings building with Python 3.8  
						
						
						
						
					 
					
						2019-10-16 14:44:36 +11:00 
						 
				 
			
				
					
						
							
							
								Colin Basnett 
							
						 
					 
					
						
						
							
						
						f0f189de76 
					 
					
						
						
							
							Fix ImBuf.load failure showing filename as garbage bytes  
						
						... 
						
						
						
						Differential Revision: https://developer.blender.org/D5879  
						
						
					 
					
						2019-10-01 20:10:46 +02:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						aba6fc8208 
					 
					
						
						
							
							ImBuf Py API: implement resize method argument  
						
						
						
						
					 
					
						2019-10-01 05:18:30 +10:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						73a6fcfa80 
					 
					
						
						
							
							ImBuf: add planes, channels attributes  
						
						... 
						
						
						
						D5857 by @cmbasnett  
						
						
					 
					
						2019-09-23 09:56:46 +10:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						6cb1e38c87 
					 
					
						
						
							
							ImBuf Py API: add filepath access  
						
						... 
						
						
						
						D5804 by @cmbasnett  with setter support added. 
						
						
					 
					
						2019-09-16 10:39:24 +10:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						367ce71b47 
					 
					
						
						
							
							ImBuf Py API: rename filename to filepath  
						
						... 
						
						
						
						Match RNA image naming. 
						
						
					 
					
						2019-09-16 10:31:08 +10:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						2ee257e2c3 
					 
					
						
						
							
							ImBuf Py API: add crop method  
						
						
						
						
					 
					
						2019-07-04 22:18:30 +10:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						b2e3f23bec 
					 
					
						
						
							
							Cleanup: remove redundant cast  
						
						
						
						
					 
					
						2019-07-04 21:14:12 +10:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						41a63556cf 
					 
					
						
						
							
							Revert "Cleanup: add semicolon after PyObject_VAR_HEAD"  
						
						... 
						
						
						
						This reverts commit a01bcfa636 
						
						
					 
					
						2019-05-03 18:09:52 +10:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						a01bcfa636 
					 
					
						
						
							
							Cleanup: add semicolon after PyObject_VAR_HEAD  
						
						... 
						
						
						
						clang-format doesn't expand macros,
add semicolon to prevent misleading formatting. 
						
						
					 
					
						2019-05-03 12:43:18 +10:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						e12c08e8d1 
					 
					
						
						
							
							ClangFormat: apply to source, most of intern  
						
						... 
						
						
						
						Apply clang format as proposed in T53211.
For details on usage and instructions for migrating branches
without conflicts, see:
https://wiki.blender.org/wiki/Tools/ClangFormat  
						
						
					 
					
						2019-04-17 06:21:24 +02:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						de13d0a80c 
					 
					
						
						
							
							doxygen: add newline after \file  
						
						... 
						
						
						
						While \file doesn't need an argument, it can't have another doxy
command after it. 
						
						
					 
					
						2019-02-18 08:22:12 +11:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						eef4077f18 
					 
					
						
						
							
							Cleanup: remove redundant doxygen \file argument  
						
						... 
						
						
						
						Move \ingroup onto same line to be more compact and
make it clear the file is in the group. 
						
						
					 
					
						2019-02-06 15:45:22 +11:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						744f633986 
					 
					
						
						
							
							Cleanup: trailing commas  
						
						... 
						
						
						
						Needed for clan-format not to wrap onto one line. 
						
						
					 
					
						2019-02-03 14:59:11 +11:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						65ec7ec524 
					 
					
						
						
							
							Cleanup: remove redundant, invalid info from headers  
						
						... 
						
						
						
						BF-admins agree to remove header information that isn't useful,
to reduce noise.
- BEGIN/END license blocks
  Developers should add non license comments as separate comment blocks.
  No need for separator text.
- Contributors
  This is often invalid, outdated or misleading
  especially when splitting files.
  It's more useful to git-blame to find out who has developed the code.
See P901 for script to perform these edits. 
						
						
					 
					
						2019-02-02 01:36:28 +11:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						df237b964b 
					 
					
						
						
							
							PyAPI: add ImBuf.copy  
						
						... 
						
						
						
						DD348 by @kilon w/ edits. 
						
						
					 
					
						2018-06-26 09:31:57 +02:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						409cfba1a3 
					 
					
						
						
							
							Python API: Initial 'imbuf' API  
						
						... 
						
						
						
						Support only basic operations new/load/write & resize.
Add now so we can extend as needed & more easily accept patches. 
						
						
					 
					
						2018-06-07 08:00:13 +02:00