aboutsummaryrefslogtreecommitdiff
path: root/js/lib/rdge/materials/mandel-material.js
diff options
context:
space:
mode:
authorhwc4872012-04-04 16:32:53 -0700
committerhwc4872012-04-04 16:32:53 -0700
commit6ee8b65742fbe61b4429dc8c7dc9ca33a3e43600 (patch)
treef267e05f623ed90d1cc841b8c79a338d6d8e807c /js/lib/rdge/materials/mandel-material.js
parent16f62ca09cc428043e8fef8bdeea11a989e62bc0 (diff)
parent17ca01f54591187f5c0812c0fd2cb7260afa9639 (diff)
downloadninja-6ee8b65742fbe61b4429dc8c7dc9ca33a3e43600.tar.gz
Merge branch 'master' of github.com:Motorola-Mobility/ninja-internal into Snapping
Conflicts: js/panels/presets/animations-presets.reel/animations-presets.js js/panels/presets/style-presets.reel/style-presets.js js/panels/presets/transitions-presets.reel/transitions-presets.js
Diffstat (limited to 'js/lib/rdge/materials/mandel-material.js')
-rw-r--r--js/lib/rdge/materials/mandel-material.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/js/lib/rdge/materials/mandel-material.js b/js/lib/rdge/materials/mandel-material.js
index e7b105e1..a82a4bfc 100644
--- a/js/lib/rdge/materials/mandel-material.js
+++ b/js/lib/rdge/materials/mandel-material.js
@@ -57,12 +57,12 @@ var MandelMaterial = function MandelMaterial() {
57 if (world) this.setWorld( world ); 57 if (world) this.setWorld( world );
58 58
59 // set up the shader 59 // set up the shader
60 this._shader = new jshader(); 60 this._shader = new RDGE.jshader();
61 this._shader.def = MandelMaterialDef; 61 this._shader.def = MandelMaterialDef;
62 this._shader.init(); 62 this._shader.init();
63 63
64 // set up the material node 64 // set up the material node
65 this._materialNode = createMaterialNode("mandelMaterial" + "_" + world.generateUniqueNodeID()); 65 this._materialNode = RDGE.createMaterialNode("mandelMaterial" + "_" + world.generateUniqueNodeID());
66 this._materialNode.setShader(this._shader); 66 this._materialNode.setShader(this._shader);
67 67
68 this._time = 0; 68 this._time = 0;
@@ -79,14 +79,14 @@ var MandelMaterial = function MandelMaterial() {
79 var material = this._materialNode; 79 var material = this._materialNode;
80 if (material) { 80 if (material) {
81 var technique = material.shaderProgram['default']; 81 var technique = material.shaderProgram['default'];
82 var renderer = g_Engine.getContext().renderer; 82 var renderer = RDGE.globals.engine.getContext().renderer;
83 if (renderer && technique) { 83 if (renderer && technique) {
84 if (this._shader && this._shader['default']) 84 if (this._shader && this._shader['default'])
85 this._shader['default'].u_time.set( [this._time] ); 85 this._shader['default'].u_time.set( [this._time] );
86 this._time = time; 86 this._time = time;
87 } 87 }
88 } 88 }
89 } 89 };
90}; 90};
91 91
92/////////////////////////////////////////////////////////////////////////////////////// 92///////////////////////////////////////////////////////////////////////////////////////