GIT

webGl2 - Path tracing a lot of polygons - fast.

please wait .. loading ..

Left click to rotate - Right Click to zoom ..

... loading ...

WebGL2 - Path tracing.

Since webCL seems to be stuck in limbo, I was pretty excited about webGL2 making it to the major browsers - both on desktop and mobile. Sure - we don’t get compute shaders yet, but the glsl is bumped to version 3.00, removing the branching restrictions. Texture and renderbuffers in floating point are default features, and texture arrays provide a way around the limited texture resources of webGL1.

To get a better feel for the new features and the performance to expect I decided to see how webGL2 holds up against a compute heavy problem like path tracing. The results are quite impressive and show how even compute heavy problems can be tackled on todays web platform.

Features in the demo.

  • 150k+ polygons.
  • Grid Based acceleration structure augmented with a distance field.
  • Hammersley low discrepancy sampler.
  • Importance sampling.
  • Full anti-aliasing

The rendering speeds achieved greatly surpass those of common comercial CPU pathtracers (e.g. arnold), and approach those of current GPU implementations (e.g. octane). The lack of compute shaders and scattered write is a handicap, but the extra power provided by webGL2 truely unlocks a whole range of applications that used to be out of reach for the web ..

Source code of the demo above (350 lines) is available on GIT.

Textures ? Materials ? Lens effects ? IBL ? PBR ? Direct Lighting ?

An extended version of this path tracer is implemented in my JimmyRig tool. Below are some screenshots that are all rendered in the browser (and all in seconds ..)

Textures, PBR materials, IBL lighting, Thin lens camera model

Nested dielectrics, frosted glass.


PBR Materials (metalness/roughness chart), IBL lighting, Direct Lighting Kernel


High poly, IBL


Written on April 6, 2017