blitz-research / monkey

Blitz Research Monkey Source
226 stars 59 forks source link

HTML5 - glGetUniformLocation #41

Closed leftnoodle closed 10 years ago

leftnoodle commented 10 years ago

Doesn't return integer but returns [object WebGLUniformLocation]

blitz-research commented 10 years ago

This is by design/a compromise...

Since JS is typeless, you can freely assign 'objects' to 'int vars' (as long as you don't do anything int-ish with them) and pass them to glUniform etc.