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

« back to all changes in this revision

Viewing changes to source/gameengine/BlenderRoutines/KX_BlenderPolyMaterial.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Florian Ernst
  • Date: 2005-11-06 12:40:03 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20051106124003-3pgs7tcg5rox96xg
Tags: 2.37a-1.1
* Non-maintainer upload.
* Split out parts of 01_SConstruct_debian.dpatch again: root_build_dir
  really needs to get adjusted before the clean target runs - closes: #333958,
  see #288882 for reference

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/**
2
 
 * $Id: KX_BlenderPolyMaterial.cpp,v 1.4 2004/03/22 22:01:23 jesterking Exp $
 
2
 * $Id: KX_BlenderPolyMaterial.cpp,v 1.6 2005/01/16 06:02:05 kester Exp $
3
3
 * ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
4
4
 *
5
5
 * This program is free software; you can redistribute it and/or
35
35
#ifdef HAVE_CONFIG_H
36
36
#include <config.h>
37
37
#endif
38
 
 
 
38
#if 0
39
39
KX_BlenderPolyMaterial::KX_BlenderPolyMaterial(const STR_String &texname,
40
40
                                                                                           bool ba,
41
41
                                                                                           const STR_String& matname,
43
43
                                                                                           int tilexrep,
44
44
                                                                                           int tileyrep,
45
45
                                                                                           int mode,
46
 
                                                                                           int transparant,
 
46
                                                                                           bool transparant,
 
47
                                                                                           bool zsort,
47
48
                                                                                           int lightlayer,
48
49
                                                                                           bool bIsTriangle,
49
50
                                                                                           void* clientobject,
56
57
                                                        tileyrep,
57
58
                                                        mode,
58
59
                                                        transparant,
 
60
                                                        zsort,
59
61
                                                        lightlayer,
60
62
                                                        bIsTriangle,
61
63
                                                        clientobject),
63
65
{
64
66
}
65
67
 
66
 
 
67
68
void KX_BlenderPolyMaterial::Activate(RAS_IRasterizer* rasty, TCachingInfo& cachingInfo) const 
68
69
{
69
70
 
111
112
}
112
113
 
113
114
 
 
115
#endif
114
116
 
115
117