I've made my webGL content fill the browser window using:
css:
canvas
{
float: left;
width: 100%;
height: 100%;
}
And also:
function webGLStart() {
var canvas = document.getElementById("cool3D");
canvas.width = window.innerWidth;
canvas.height = window.innerHeight;
...
So far, this is effective for maintaining full coverage, no matterthe size of the window or fullscreen. The problem is assigning the aspect ratio of the camera to avoid distortion.
How can I set it to ~"window.innerWidth/window.innerHeight"? OnWindowResize?