Update text

This commit is contained in:
Andras Schmelczer 2022-09-26 12:23:40 +02:00
parent ff05678528
commit dc1a412396
No known key found for this signature in database
GPG key ID: 0EA1BC97D0AB076E
3 changed files with 10 additions and 8 deletions

View file

@ -12,13 +12,13 @@ export const sdf2d: TimelineElementParameters = {
'A webpage showcasing the SDF-2D project.'
),
description:
'I created the SDF-2D library for efficiently rendering 2D scenes using ray tracing. My solution relies on signed distance fields (SDF-s), it supports both WebGL and WebGL2, and is an easily reusable and extensible NPM package.',
'I created the SDF-2D library for efficiently rendering 2D scenes using ray tracing. My solution relies on signed distance fields (SDF-s) and a novel optimisation for 2D SDF rendering inspired by tiled renderers. It even works great on mobiles.',
more: [
'A multitude of optimisations were needed to achieve real-time performance even on low-end mobile devices. These include deferred shading, tile-based rendering, and dynamic shader generation to eliminate unnecessary instructions.',
"A multitude of optimisations was needed to achieve compatibility and real-time performance, even on low-end devices. Next to tile-based rendering, these include deferred shading and dynamic shader generation to eliminate unnecessary instructions based on the device's capabilities.",
'The result is a reusable library written in TypeScript with a — subjectively — simple and elegant API. For more information please check out the GitHub repository or the NPM package itself. Or simply enjoy the mesmerising demo scenes.',
'The result is a reusable library written in TypeScript with a — subjectively — simple and elegant API. The library supports WebGL and WebGL2 and is an easily reusable and extensible NPM package.',
'Creating this library package is also covered in my thesis (available above).',
'Please check out the GitHub repository, the NPM package, or my thesis (linked above) for more information. Or simply enjoy the mesmerising demo scenes.',
],
links: [
NPM('https://www.npmjs.com/package/sdf-2d'),