Main Page: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 10: | Line 10: | ||
== Links == | == Links == | ||
* [http://webgl.org/bugzilla/ WebGL Bugzilla] | * [http://webgl.org/bugzilla/ WebGL Bugzilla] | ||
== Syntax Highlighting Test == | |||
<syntaxhighlight> | |||
var a = 10; | |||
for (i = 0; i < 10; ++i) { | |||
this.call(a, i); | |||
canvas.getContext("webgl"); | |||
canvas.drawElements(); | |||
a += 1; | |||
} | |||
function call(a, b) | |||
{ | |||
return a + b; | |||
} | |||
</syntaxhighlight> | |||
That is some highlighted text |
Revision as of 01:06, 4 December 2009
MediaWiki has been successfully installed.
Consult the User's Guide for information on using the wiki software.
Getting started
Links
Syntax Highlighting Test
var a = 10;
for (i = 0; i < 10; ++i) {
this.call(a, i);
canvas.getContext("webgl");
canvas.drawElements();
a += 1;
}
function call(a, b)
{
return a + b;
}
That is some highlighted text