diff options
author | Jonathan Duran | 2012-03-29 07:27:27 -0700 |
---|---|---|
committer | Jonathan Duran | 2012-03-29 07:27:27 -0700 |
commit | ab730848419a0b72c4c2747a3c928f2c8cc763e7 (patch) | |
tree | 6b48b82604e194016ca048ad912f8015de719999 /js/helper-classes/RDGE/src/core/script/engine.js | |
parent | 06f247d881f4cfd790d635c6e310ae7f97724339 (diff) | |
parent | 3fd2cdb59027b3f973b9165db9db4fdd22026941 (diff) | |
download | ninja-ab730848419a0b72c4c2747a3c928f2c8cc763e7.tar.gz |
Merge branch 'refs/heads/NINJAmaster' into TimelineUber
Diffstat (limited to 'js/helper-classes/RDGE/src/core/script/engine.js')
-rwxr-xr-x | js/helper-classes/RDGE/src/core/script/engine.js | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/js/helper-classes/RDGE/src/core/script/engine.js b/js/helper-classes/RDGE/src/core/script/engine.js index f5724665..1341d032 100755 --- a/js/helper-classes/RDGE/src/core/script/engine.js +++ b/js/helper-classes/RDGE/src/core/script/engine.js | |||
@@ -214,6 +214,11 @@ function Engine() | |||
214 | return contextManager.contextMap[optCanvasID]; | 214 | return contextManager.contextMap[optCanvasID]; |
215 | } | 215 | } |
216 | } | 216 | } |
217 | |||
218 | this.clearContext = function( canvasID ) | ||
219 | { | ||
220 | contextManager.contextMap[canvasID] = undefined; | ||
221 | } | ||
217 | 222 | ||
218 | /* | 223 | /* |
219 | * give the contextID (canvas id) of the context to set | 224 | * give the contextID (canvas id) of the context to set |
@@ -488,7 +493,7 @@ Engine.prototype.registerCanvas = function(canvas, runState) { | |||
488 | Engine.prototype.unregisterCanvas = function(canvas) { | 493 | Engine.prototype.unregisterCanvas = function(canvas) { |
489 | stat.closePage(canvas.rdgeid + "_fps"); | 494 | stat.closePage(canvas.rdgeid + "_fps"); |
490 | contextManager.removeObject(canvas.rdgeCtxHandle); | 495 | contextManager.removeObject(canvas.rdgeCtxHandle); |
491 | 496 | this.clearContext( canvas.rdgeid ); | |
492 | } | 497 | } |
493 | 498 | ||
494 | Engine.prototype.getCanvas = function( id ) | 499 | Engine.prototype.getCanvas = function( id ) |