0
votes
1answer
68 views

Why is WebGL render speed so inconsistent?

In my application I plot about 8 million vertices with a single call to WebGL's drawarrays using the LINE_STRIP flag. I don't actually want one long line, I want about 200k short lines, so I cap all ...
1
vote
1answer
107 views

Detect ANGLE from JavaScript

I have a WebGL / Three.js game which has an unhelpful shader program linking error when ANGLE is used for providing WebGL. I'd like to display a prominent warning to ANGLE users (but not bug others) ...
0
votes
1answer
421 views

Lighting in WebGL on Galaxy S3 smartphone

At glowscript.org are various demo programs written in JavaScript or CoffeeScript that involve little code. For example, the one-line program box() creates a 3D cube that can be rotated and zoomed, ...
1
vote
1answer
69 views

strange 3d rendering in firefox on mac

Today I have encountered a strange problem with firefox, and unlike other problems this a very big one. Without further ado, the screenshots: What we see in chrome and any other browser (except IE of ...
0
votes
0answers
139 views

THREE.js setting WebGL width to screen, set height accordingly in respect to the monitor's aspect ratio

I am attempting to have a webpage composed of a fullscreen WebGL element to fit to the screen as best as it can without scaling at all. I have had it working on and off, but Firefox is giving me the ...
11
votes
1answer
1k views

Proper way to detect WebGL support?

I am attempting to detect WebGL support across multiple browsers and I've encountered the following scenario. The current version of Firefox appears to report positive support using the following ...
2
votes
1answer
231 views

Why is gl.readPixels giving all 0 from Firefox?

I’m using WebGL to run some image processing (similar to Brad Larson’s GPUImage or the tutorial WebGL Fundamentals), followed by a CPU step that consumes the pixels. Unfortunately, when I call ...
0
votes
1answer
185 views

Why does the From Dust 3D game run on Chrome only?

There is a new web based 3D game called FROM DUST. It's available for the web browser Google Chrome, but I would like to know why this game is not available for Firefox, Opera and Safari too. All ...
0
votes
1answer
120 views

Rendering to a specific area marked by DIV while scrolling in Firefox

Using a canvas covering entire view I want to draw a rotating triangle to the area marked by a div container. However Firefox does not always draw the triangle into the div placeholder because of ...
0
votes
0answers
294 views

Base64 encoded images in WebGL (Firefox 8)

I've been using Base64 encoded images to solve the cross-domain issue with WebGL. However, for some reason it stopped working in Firefox 8, it worked fine in previous versions. Is there anything that ...
1
vote
1answer
302 views

Firefox - Load texture cross-domain (WebGL)

I'm having a problem loading images cross-domain in Firefox for WebGL and it works fine in Chrome. I've implemented CORS on the server that has "Access-Control-Allow-Origin: *" in the response ...
2
votes
3answers
2k views

How to detect if user has enabled full screen in browser

Is there some JavaScript event fired when user enables full screen in Chrome or FireFox? I have WebGL application with canvas width and height set to a certain size and I would like to resize that ...
2
votes
1answer
321 views

Is there a public specification of WebGL anywhere?

It seems the Khronos group is fairly closed when it comes to releasing early specs for WebGL to the public. Does anyone know of a resource to keep up to date on API changes? The only thing I can ...