~ubuntu-branches/ubuntu/maverick/blender/maverick

« back to all changes in this revision

Viewing changes to source/gameengine/Ketsji/KX_ISceneConverter.h

  • Committer: Bazaar Package Importer
  • Author(s): Khashayar Naderehvandi, Khashayar Naderehvandi, Alessio Treglia
  • Date: 2009-01-22 16:53:59 UTC
  • mfrom: (14.1.1 experimental)
  • Revision ID: james.westby@ubuntu.com-20090122165359-v0996tn7fbit64ni
Tags: 2.48a+dfsg-1ubuntu1
[ Khashayar Naderehvandi ]
* Merge from debian experimental (LP: #320045), Ubuntu remaining changes:
  - Add patch correcting header file locations.
  - Add libvorbis-dev and libgsm1-dev to Build-Depends.
  - Use avcodec_decode_audio2() in source/blender/src/hddaudio.c

[ Alessio Treglia ]
* Add missing previous changelog entries.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/**
2
 
 * $Id: KX_ISceneConverter.h 14444 2008-04-16 22:40:48Z hos $
 
2
 * $Id: KX_ISceneConverter.h 16366 2008-09-04 20:51:28Z blendix $
3
3
 *
4
4
 * ***** BEGIN GPL LICENSE BLOCK *****
5
5
 *
32
32
#include "STR_String.h"
33
33
#include "KX_Python.h"
34
34
 
 
35
struct Scene;
 
36
 
35
37
class KX_ISceneConverter 
36
38
{
37
39
 
74
76
        virtual void SetMaterials(bool val) =0;
75
77
        virtual bool GetMaterials()=0;
76
78
 
 
79
        // use blender glsl materials
 
80
        virtual void SetGLSLMaterials(bool val) =0;
 
81
        virtual bool GetGLSLMaterials()=0;
 
82
 
 
83
        virtual struct Scene* GetBlenderSceneForName(const STR_String& name)=0;
77
84
};
78
85
 
79
86
#endif //__KX_ISCENECONVERTER_H