mathutils: refactor instantiation
remove 'type' argument, very few mathutils objects are wrapped, add new function for creating wrapped objects. also fixes unlikely memory leak if the data-array can't be allocated.
This commit is contained in:
@@ -40,8 +40,17 @@ typedef struct {
|
||||
* blender (stored in blend_data). This is an either/or struct not both */
|
||||
|
||||
/* prototypes */
|
||||
PyObject *Quaternion_CreatePyObject(float quat[4], int type, PyTypeObject *base_type);
|
||||
PyObject *Quaternion_CreatePyObject_cb(PyObject *cb_user,
|
||||
unsigned char cb_type, unsigned char cb_subtype);
|
||||
PyObject *Quaternion_CreatePyObject(
|
||||
const float quat[4],
|
||||
PyTypeObject *base_type
|
||||
) ATTR_WARN_UNUSED_RESULT;
|
||||
PyObject *Quaternion_CreatePyObject_wrap(
|
||||
float quat[4],
|
||||
PyTypeObject *base_type
|
||||
) ATTR_WARN_UNUSED_RESULT ATTR_NONNULL(1);
|
||||
PyObject *Quaternion_CreatePyObject_cb(
|
||||
PyObject *cb_user,
|
||||
unsigned char cb_type, unsigned char cb_subtype
|
||||
) ATTR_WARN_UNUSED_RESULT;
|
||||
|
||||
#endif /* __MATHUTILS_QUATERNION_H__ */
|
||||
|
||||
Reference in New Issue
Block a user