Skip to content

Commit

Permalink
added debug to print out commands
Browse files Browse the repository at this point in the history
  • Loading branch information
Andor committed May 29, 2010
1 parent d3dc2a3 commit 344eceb
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions pjs_stress_test/processing.js
Expand Up @@ -3987,6 +3987,12 @@
curContext.enable(curContext.BLEND);
curContext.blendFunc(curContext.SRC_ALPHA, curContext.ONE_MINUS_SRC_ALPHA);

var symbols= "";
for(currSymbol in curContext) {
symbols += currSymbol + "\n";
}
tinylogLite.log(symbols);

// We declare our own constants since Minefield doesn't
// do anything when curContext.VERTEX_PROGRAM_POINT_SIZE is used.
curContext.enable(VERTEX_PROGRAM_POINT_SIZE);
Expand Down

0 comments on commit 344eceb

Please sign in to comment.