Campbell Barton
4e4e872478
PyAPI: Add gpu.matrix API
2017-08-20 00:01:19 +10:00
Campbell Barton
2332051419
Merge branch 'master' into blender2.8
2017-08-19 21:54:05 +10:00
Campbell Barton
1cc4033df8
PyAPI: expose matrix parsing function
2017-08-19 21:36:50 +10:00
Campbell Barton
4437ccf476
Correct error in gawain wrapper for non-gcc compilers
2017-08-19 20:22:15 +10:00
Campbell Barton
6fe38bf1cc
PyAPI: Gawain checks for range
...
Raise error on vert-buffer data overflow.
Also exception on attempting to fill data thats already on the GPU.
2017-08-18 18:58:52 +10:00
Campbell Barton
4e468ceb71
PyAPI: Fix memory leak w/ empty, allocated enums
2017-08-18 18:29:27 +10:00
Campbell Barton
d0dad02604
Cleanup: use lowercase prefix for local API's
...
Also some minor corrections.
2017-08-18 08:58:26 +10:00
Campbell Barton
cb67873ac5
PyAPI: Iniital gawain API for Python
...
Wraps vertex-format, vertex-buffer and batch's (enough for drawing).
Doesn't yet expose index-buffers or shaders.
2017-08-18 08:45:41 +10:00
Campbell Barton
73df38a879
RNA: don't register manipulator properties by name
...
Matching behavior for operators.
2017-08-18 07:50:31 +10:00
Campbell Barton
a60727080f
Merge branch 'master' into blender2.8
2017-08-12 14:06:29 +10:00
Bastien Montagne
c034193821
Cleanup: remove useless DM_ensure_looptri().
...
That one was doing exactly same thing as `dm->getLoopTriArray()`, no
point in having twice the same code here...
2017-08-11 17:08:41 +02:00
Campbell Barton
9567529b8f
Merge branch 'master' into blender2.8
2017-08-12 00:23:49 +10:00
Campbell Barton
daa834bc11
RNA: Operators were excluded from struct map
...
Recent changes meant structs that were registered without a name
wouldn't get added to the map.
Now assigning identifiers manages the struct-map.
2017-08-11 20:11:01 +10:00
Sybren A. Stüvel
01ee88563b
Fix T46329: scene_update_{pre,post} doc needs clarification
...
The documentation for the bpy.app.handlers.scene_update_{pre,post}
handlers states that they're called "on updating the scenes data".
However, they're called even when the data hasn't changed. Of course
such handlers are useful, but the documentation should reflect the
current behaviour.
Reviewers: mont29, sergey
Subscribers: Blendify
Maniphest Tasks: T46329
Differential Revision: https://developer.blender.org/D1535
2017-08-08 15:16:51 +02:00
Campbell Barton
5709021f52
Correct previous commit, instance should be cleared
...
Clear instance in case creating creating new instance fails.
In practice this shouldn't happen,
but better not cause further errors if it does.
2017-08-01 17:17:38 +10:00
Campbell Barton
5ac9e587d4
PyRNA: Ensure changed types creates a new instance
...
Changing lamp type for eg needs to create a new instance.
2017-08-01 17:14:09 +10:00
Campbell Barton
0e26707bce
Merge branch 'master' into blender2.8
2017-07-29 06:44:04 +10:00
Campbell Barton
87d5e34453
Fix T52213: Enum drivers no longer work
...
Regression in D1812: PyDriver variables as Objects
Taking the Python representation is nice in general
but for enums it would convert them into strings,
breaking some existing drivers.
2017-07-29 02:39:16 +10:00
Campbell Barton
48e8a1a167
Fix crash in recent changes to instancing
...
Registrable classes already handled their own instancing,
changes to enable instancing everywhere conflicted.
2017-07-27 03:27:14 +10:00
Campbell Barton
40a45e393e
PyAPI: Fix for instancing (Blender owns a reference)
...
Also set newly created values to the instance pointer.
2017-07-26 23:05:00 +10:00
Campbell Barton
b97bf844b3
Merge branch 'master' into blender2.8
2017-07-25 20:53:10 +10:00
Campbell Barton
edc6bec9d6
PyAPI: Skip user scripts w/ factory-startup
...
Adds bpy.app.factory_startup,
used to check if user scripts should be loaded.
2017-07-25 20:52:08 +10:00
Sergey Sharybin
5605c26fcd
Fix function declaration of some modifiers
...
Those functions did not use evaluation context.
Also fixed lots of unused variables warnings caused by commented out code which
needs to be ported away from DerivedMesh and to evaluation context.
2017-07-21 15:54:42 +02:00
Luca Rood
1c4c288727
Pass EvaluationContext argument everywhere
...
Note that some little parts of code have been dissabled because eval_ctx
was not available there. This should be resolved once DerivedMesh is
replaced.
2017-07-21 14:47:26 +02:00
Campbell Barton
6b0d4302be
PyAPI: use instancing when supported
...
This means when a new data-type is returned it will use the same
instance as the previously created one (if it exists).
2017-07-21 00:50:18 +10:00
Campbell Barton
819f3b37da
BMesh face map layer access
2017-07-20 19:52:26 +10:00
Campbell Barton
2475dbdc94
Merge branch 'master' into blender2.8
2017-07-18 13:09:36 +10:00
Brecht Van Lommel
d268cad06a
Fix T52090: clarify meaning of EnumProperty number when using ENUM_FLAG.
2017-07-17 18:31:19 +02:00
Campbell Barton
193d7d6333
Merge branch 'master' into blender2.8
2017-07-17 13:21:05 +10:00
Campbell Barton
3d1e5bca88
PyAPI: don't use deprecated PyModule_GetFilename
...
Allows compiling with newer Python versions.
Also add missing decref when compiling as a py-module.
2017-07-17 12:53:55 +10:00
Campbell Barton
a11808a248
Manipulator: allow py manipulators w/o properties
...
These could be used for manipulators that run operators.
2017-07-17 12:29:37 +10:00
Sergey Sharybin
c9aef27326
Depsgraph: Begin work on making depsgraph per-scene-layer
...
This is a first step towards proper depsgraph "ownership", where
we would allow scene to be in multiple states dependent on active
workspace or scene layer.
This commit introduces a basic API to get proper dependency graph
for a given scene layer. It also renames scene->depsgraph to
depsgraph_legacy, so it's easier to search0-n-replace in the future.
2017-07-13 15:43:36 +02:00
Campbell Barton
21f088018a
Used Py3.6 feature by accident, check version
2017-06-26 19:57:48 +10:00
Campbell Barton
28b2f1c305
Manipulator: Python API
...
Initial support for Python/Manipulator integration
from 'custom-manipulators' branch.
Supports:
- Registering custom manipulators & manipulator-groups.
- Modifying RNA properties, custom values via get/set callbacks,
or invoking an operator.
- Drawing shape presets for Python defined manipulators (arrow, circle, face-maps)
Limitations:
- Only float properties supported.
- Drawing only supported via shape presets.
(we'll likely want a way to define custom geometry or draw directly).
- When to refresh, recalculate manipulators will likely need
integration with notifier system.
Development will be continued in the 2.8 branch
2017-06-26 16:38:04 +10:00
Campbell Barton
6d1ae5897f
Merge branch 'master' into blender2.8
2017-06-26 13:43:56 +10:00
Campbell Barton
c822b1612f
Docs: correct doc-strings
2017-06-26 07:36:29 +10:00
Campbell Barton
5b51dcacbc
PyAPI: add intern strings
...
Avoid string conversion on each use.
2017-06-21 12:43:19 +10:00
Campbell Barton
9649c6bef5
Merge branch 'master' into blender2.8
2017-06-19 15:06:48 +10:00
Campbell Barton
72c9141a7a
Cleanup: doxygen comments
...
Also remove duplicate & mismatching comments from grease-pencil header.
Keep comments close to implementation to avoid getting out of sync.
2017-06-19 10:04:30 +10:00
Campbell Barton
83c28ff96a
Merge branch 'master' into blender2.8
2017-06-18 01:44:08 +10:00
Aaron Carlisle
ed6d88f06a
PyAPI: Fix warning about indent
2017-06-16 12:30:18 -04:00
Sergey Sharybin
35ec72bcb8
Merge branch 'master' into blender2.8
2017-06-15 10:17:51 +02:00
Aaron Carlisle
44fd84bcc3
PyAPI: Proper Solution to bpy.app
2017-06-15 00:54:41 -04:00
Aaron Carlisle
df7c609fda
PYAPI: Fix mathutils doc structure
2017-06-14 16:47:43 -04:00
Sergey Sharybin
0f4f4d8754
Merge branch 'master' into blender2.8
2017-06-12 15:12:36 +02:00
Campbell Barton
00c4f49a6d
Cleanup: indentation, long lines
2017-06-12 13:38:21 +10:00
Campbell Barton
346619159a
Merge branch 'master' into blender2.8
2017-06-09 07:21:43 +10:00
Campbell Barton
8a757bf34a
RNA: remove static strings from registration
...
* Static strings aren't needed anymore, use stack memory.
* Fix obscure leak on failed macro registration.
* Use prefix for wrappers exported from bpy module.
2017-06-09 07:20:25 +10:00
Sergey Sharybin
00b009ca74
Merge branch 'master' into blender2.8
2017-06-07 12:18:07 +02:00
Sergey Sharybin
5489b40a5a
Report OpenSubdiv version Blender is compiled against
2017-06-07 12:16:48 +02:00