~ubuntu-branches/ubuntu/gutsy/blender/gutsy-security

« back to all changes in this revision

Viewing changes to source/blender/python/api2_2x/sceneRender.h

  • Committer: Bazaar Package Importer
  • Author(s): Florian Ernst
  • Date: 2007-05-17 11:47:59 UTC
  • mfrom: (1.2.6 upstream)
  • Revision ID: james.westby@ubuntu.com-20070517114759-yp4ybrnhp2u7pk66
Tags: 2.44-1
* New upstream release.
* Drop debian/patches/01_64bits_stupidity, not needed anymore: as of this
  version blender is 64 bits safe again. Adjust README.Debian accordingly.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* 
2
 
 * $Id: sceneRender.h,v 1.4 2005/07/18 03:50:37 ascotan Exp $
 
2
 * $Id: sceneRender.h,v 1.5 2007/03/15 01:09:14 campbellbarton Exp $
3
3
 *
4
4
 * ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
5
5
 *
36
36
#include <Python.h>
37
37
#include "DNA_scene_types.h"
38
38
 
 
39
#define BPy_RenderData_Check(v)       ((v)->ob_type == &RenderData_Type)
 
40
 
39
41
//------------------------------------Struct definitions-------
40
42
typedef struct {
41
43
        PyObject_HEAD 
46
48
PyObject *Render_Init( void );
47
49
 
48
50
PyObject *RenderData_CreatePyObject( struct Scene *scene );
49
 
int RenderData_CheckPyObject( PyObject * py_obj );
50
51
 
51
52
#endif                          /* EXPP_SCENERENDER_H */