Skip to main content

Enabling WebGL on Firefox

WebGL is a standard specification that is currently being developed to display 3D graphics in web browsers. The WebGL allows you to enable accelerated 3D graphics hardware on websites.
webGL
Due to security reasons Firefox does not enable WebGL by default. The problem is not in Firefox but many drivers and Graphics cards do not have the full support for OpenGL . The reason it works on Chrome right now is because chrome doesn't have white/black/block-lists currently, as FireFox has.
Mozilla blacklists specific GPUs based on the driver version number, i.e.
  • NVIDIA cards require a driver numbered 8.17.12.5721 or greater
  • AMD/ATI cards are 8.741.0.0 or greater
  • Intel cards normally require 6.14.11 on XP, 7.15.10 on Vista or 8.15.10 on 7 (although some products are completely blocked)
  • Macs require OS version 10.6 or newer
To check if your graphics card is supported or not type following in address bar in your FireFox
about:support
Scroll down to Graphics Section and look for WebGL renderer
aboutsupport
To force enable WebGL (from Mozilla Webpage)
forceenabl
Check out the following site to check:—
http://get.webgl.org/
You should see the following
suppweb
Now if you want to check WebGL is capable of doing
search following into Google
sqrt(x*x+y*y)+3*cos(sqrt(x*x+y*y))+5 from -20 to 20
Here is a screenshot in Chrome
graph
Further Readings and examples:—
http://www.khronos.org/webgl/
http://www.ibiblio.org/e-notes/webgl/webgl.htm
https://developer.mozilla.org/en-US/demos/tag/tech:webgl/
https://developer.mozilla.org/en/WebGL

Comments

Popular posts from this blog

jQuery support in Aptana Studio 3

I use Aptana Studio primarily for web development. It has great support for languages like PHP and JavaScript. But the problem is that I mostly use jQuery rather than code in JavaScript and Aptana does not have good support / content assist from beginning. So we need to install ruble for jQuery library. Ruble is short for Ruby bundle and is a runtime environment that allows the extensibility of Aptana Studio's editors by using Ruby. To install the jQuery bundle follow the following steps: Navigate to Commands | Bundle Developement | Install Bundle. Select jQuery and click OK. Aptana will clone jQuery ruble from github. Include appropriate jQuery sdocml in Project Build Path from Project Properties. Include a VSDoc file for jQuery in your project. [caption id="attachment_47" align="aligncenter" width="1313"] Aptana fetching jquery ruble from GitHub[/caption] You must include appropriate version VSDoc for correct Content Assist. [caption id="attac...

How to split large mp3 files using mp3splt

If you have a  lengthy  or large MP3 file and you want to  split  it into files of smaller size or duration, You can easily do this using mp3splt. Mp3splt   is an utility to split mp3 and ogg vorbis digital audio files without the need of decoding. It can be used to split a file into no of tracks of fixed duration and size or specified  split points. It supports variable bit rate mp3 files, silent detection, splitting with local .XMCD, .CDDB or .CUE file splitpoints or from external servers like   tracktype.org . It copies the original files first and then generates new, smaller files during the process of splitting without altering the original file. It does not do any encoding or decoding so the splitting is very fast and lossless. Steps to follow Navigate to directory where you have downloaded mp3splt { if using portable version } . Run and execute mp3slpt using the command   mp3splt  . Specify the options according to which you wanna split. The basic syntax is   mp3splt [file path]...