- More renaming all around to follow our conventions
- Implemented partially Blender.Sys - Worked on issues related to sys, path - Took away most "debug" printfs
This commit is contained in:
@@ -37,17 +37,17 @@
|
||||
|
||||
|
||||
/*****************************************************************************/
|
||||
/* Python C_Image structure definition */
|
||||
/* Python BPy_Image structure definition */
|
||||
/*****************************************************************************/
|
||||
typedef struct {
|
||||
PyObject_HEAD
|
||||
Image *image;
|
||||
|
||||
} C_Image;
|
||||
} BPy_Image;
|
||||
|
||||
extern PyTypeObject Image_Type; /* The Image PyType Object */
|
||||
|
||||
#define C_Image_Check(v) ((v)->ob_type == &Image_Type) /* for type checking */
|
||||
#define BPy_Image_Check(v) ((v)->ob_type == &Image_Type)/*for type checking*/
|
||||
|
||||
/*****************************************************************************/
|
||||
/* Module Blender.Image - public functions */
|
||||
|
Reference in New Issue
Block a user