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

« back to all changes in this revision

Viewing changes to source/gameengine/Rasterizer/RAS_OpenGLRasterizer/RAS_VAOpenGLRasterizer.h

  • Committer: Bazaar Package Importer
  • Author(s): Lukas Fittl
  • Date: 2006-09-20 01:57:27 UTC
  • mfrom: (1.2.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20060920015727-gmoqlxwstx9wwqs3
Tags: 2.42a-1ubuntu1
* Merge from Debian unstable (Closes: Malone #55903). Remaining changes:
  - debian/genpot: Add python scripts from Lee June <blender@eyou.com> to
    generate a reasonable PO template from the sources. Since gettext is used
    in a highly nonstandard way, xgettext does not work for this job.
  - debian/rules: Call the scripts, generate po/blender.pot, and clean it up
    in the clean target.
  - Add a proper header to the generated PO template.
* debian/control: Build depend on libavformat-dev >= 3:0.cvs20060823-3.1,
  otherwise this package will FTBFS

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/**
2
 
 * $Id: RAS_VAOpenGLRasterizer.h,v 1.7 2004/08/10 11:34:12 kester Exp $
 
2
 * $Id: RAS_VAOpenGLRasterizer.h,v 1.8 2006/04/02 21:04:20 erwin Exp $
3
3
 *
4
4
 * ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
5
5
 *
36
36
 
37
37
class RAS_VAOpenGLRasterizer : public RAS_OpenGLRasterizer
38
38
{
 
39
        void TexCoordPtr(const RAS_TexVert *tv, int unit);
 
40
        bool m_Lock;
 
41
 
39
42
public:
40
 
        RAS_VAOpenGLRasterizer(RAS_ICanvas* canvas);
 
43
        RAS_VAOpenGLRasterizer(RAS_ICanvas* canvas, bool lock=false);
41
44
        virtual ~RAS_VAOpenGLRasterizer();
42
45
 
43
46
        virtual bool    Init();
51
54
                class RAS_IPolyMaterial* polymat,
52
55
                class RAS_IRenderTools* rendertools,
53
56
                bool useObjectColor,
54
 
                const MT_Vector4& rgbacolor);
 
57
                const MT_Vector4& rgbacolor,
 
58
                class KX_ListSlot** slot);
 
59
 
 
60
        virtual void IndexPrimitivesMulti( 
 
61
                const vecVertexArray& vertexarrays,
 
62
                const vecIndexArrays & indexarrays,
 
63
                int mode,
 
64
                class RAS_IPolyMaterial* polymat,
 
65
                class RAS_IRenderTools* rendertools,
 
66
                bool useObjectColor,
 
67
                const MT_Vector4& rgbacolor,
 
68
                class KX_ListSlot** slot);
55
69
 
56
70
 
57
71
        virtual void    EnableTextures(bool enable);
 
72
        //virtual bool  QueryArrays(){return true;}
 
73
        //virtual bool  QueryLists(){return m_Lock;}
58
74
 
59
75
};
60
76