49
NVIDIA Path Rendering Accelerating Vector Graphics for the Mobile Web Mark Kilgard Principal Graphics Software Engineer NVIDIA Corporation

NVIDIA Path Rendering · Recommended Press Session –Media & Entertainment This talk covers a real-world application of NVIDIA's path rendering technology (NVPR) for accelerating

  • Upload
    others

  • View
    17

  • Download
    0

Embed Size (px)

Citation preview

Page 1: NVIDIA Path Rendering · Recommended Press Session –Media & Entertainment This talk covers a real-world application of NVIDIA's path rendering technology (NVPR) for accelerating

NVIDIA Path Rendering

Accelerating Vector Graphics for the Mobile Web

Mark KilgardPrincipal Graphics Software EngineerNVIDIA Corporation

Page 2: NVIDIA Path Rendering · Recommended Press Session –Media & Entertainment This talk covers a real-world application of NVIDIA's path rendering technology (NVPR) for accelerating

About Me

• Principal System Software Engineer

– OpenGL driver and API evolution

– Cg (“C for graphics”) shading language

– GPU-accelerated path rendering

• OpenGL Utility Toolkit (GLUT) implementer

• Author of OpenGL for the X Window System

• Co-author of Cg Tutorial

• Now working on NVIDIA’s web browser team

Page 3: NVIDIA Path Rendering · Recommended Press Session –Media & Entertainment This talk covers a real-world application of NVIDIA's path rendering technology (NVPR) for accelerating

What is Path Rendering?

• A rendering approach

– Resolution-independenttwo-dimensional (2D) graphics

– Occlusion & transparency depend on rendering order

• So called “Painter’s Algorithm”

– Basic primitive is a path to be filled or stroked

• Path is a sequence of path commands

• Commands are

– moveto, lineto, curveto, arcto, closepath, etc.

• Common rendering model to many 2D graphics standards & APIs

Page 4: NVIDIA Path Rendering · Recommended Press Session –Media & Entertainment This talk covers a real-world application of NVIDIA's path rendering technology (NVPR) for accelerating

What is a path?

• Intuition:an “outline”

• Well-known to

2D artists

Page 5: NVIDIA Path Rendering · Recommended Press Session –Media & Entertainment This talk covers a real-world application of NVIDIA's path rendering technology (NVPR) for accelerating

Geometric Featuresof a Path

• Complex 2D

representation

curved

segments

straight

segments

holes

font

glyphs

concave

shapes

fine nested detail possible

“kissing”

joins

Page 6: NVIDIA Path Rendering · Recommended Press Session –Media & Entertainment This talk covers a real-world application of NVIDIA's path rendering technology (NVPR) for accelerating

Path defined by control points

• 2D points

define outline

– Bezier

segments

define curvesextrapolating

control points

interpolating

control points

Page 7: NVIDIA Path Rendering · Recommended Press Session –Media & Entertainment This talk covers a real-world application of NVIDIA's path rendering technology (NVPR) for accelerating

Paths can be Filled

• Intuition:“Color between

the lines”

• Fill rules

– Non-zero

• Overlaps

allowed

– Even-odd

Page 8: NVIDIA Path Rendering · Recommended Press Session –Media & Entertainment This talk covers a real-world application of NVIDIA's path rendering technology (NVPR) for accelerating

Or Stroked

• Intuition:“Trace the

outline with

a pen”

Page 9: NVIDIA Path Rendering · Recommended Press Session –Media & Entertainment This talk covers a real-world application of NVIDIA's path rendering technology (NVPR) for accelerating

Or Both

• Filling, then Strokinghelps “highlight”

an object

Page 10: NVIDIA Path Rendering · Recommended Press Session –Media & Entertainment This talk covers a real-world application of NVIDIA's path rendering technology (NVPR) for accelerating

Embellishments

• Gradients & other shadingcan be applied

• The stroking canbe “dashed”

• Stroking can vary

– stroke width

– end-caps

– dash-caps

– join-styles

– mitering

Page 11: NVIDIA Path Rendering · Recommended Press Session –Media & Entertainment This talk covers a real-world application of NVIDIA's path rendering technology (NVPR) for accelerating

Path are the Basic Primitiveof a Rich Set of 2D Graphics Operations

Geometry Paint Composite • Bezier curves

• Fill & stroke

• Dash

• Cap

• Miter

• Color

• Image

• Pattern

• Gradient

• Shade!

• Transparency

• Blend modes

• Mask

• Filter

• Post-process

Page 12: NVIDIA Path Rendering · Recommended Press Session –Media & Entertainment This talk covers a real-world application of NVIDIA's path rendering technology (NVPR) for accelerating

Path Rendering Standards

DocumentPrinting andExchange

ImmersiveWebExperience

2D GraphicsProgrammingInterfaces

OfficeProductivityApplications

Resolution-IndependentFonts

OpenType

TrueType

Flash

Open XMLPaper (XPS)

Java 2DAPI

Mac OS X2D API Adobe Illustrator

InkscapeOpen Source

ScalableVectorGraphics

QtGuiAPI

Maps

Page 13: NVIDIA Path Rendering · Recommended Press Session –Media & Entertainment This talk covers a real-world application of NVIDIA's path rendering technology (NVPR) for accelerating

Some Examples of ComplexPath Rendering Content

Varied applications

Page 14: NVIDIA Path Rendering · Recommended Press Session –Media & Entertainment This talk covers a real-world application of NVIDIA's path rendering technology (NVPR) for accelerating

NVIDIA’s Santa Clara headquarters

Open Street Map vector data

Page 15: NVIDIA Path Rendering · Recommended Press Session –Media & Entertainment This talk covers a real-world application of NVIDIA's path rendering technology (NVPR) for accelerating

Each dot inthe zoom aboveis a path’scontrol point

Super-intricate Adobe Illustrator artwork

Page 16: NVIDIA Path Rendering · Recommended Press Session –Media & Entertainment This talk covers a real-world application of NVIDIA's path rendering technology (NVPR) for accelerating

Web pages rendered from their trueresolution-independent form

Page 17: NVIDIA Path Rendering · Recommended Press Session –Media & Entertainment This talk covers a real-world application of NVIDIA's path rendering technology (NVPR) for accelerating

Visualizing the control pointsfor every glyph and path

Page 18: NVIDIA Path Rendering · Recommended Press Session –Media & Entertainment This talk covers a real-world application of NVIDIA's path rendering technology (NVPR) for accelerating

Zoom in and see the detailAnd control points

Page 19: NVIDIA Path Rendering · Recommended Press Session –Media & Entertainment This talk covers a real-world application of NVIDIA's path rendering technology (NVPR) for accelerating

Why is NVIDIA Interested in GPU-acceleratedPath Rendering?

• Power wall

More functionality with less

latency…

…with less power

• Increasing screen resolutions• Multi-touch

• Increasing screen densities

• Immersive 2D web content

Page 20: NVIDIA Path Rendering · Recommended Press Session –Media & Entertainment This talk covers a real-world application of NVIDIA's path rendering technology (NVPR) for accelerating

Complete Web Pages Rendered via OpenGL

without Pre-rendered Glyph Bitmaps and all on GPU

http://www.gputechconf.com/page/summits.html

Page 21: NVIDIA Path Rendering · Recommended Press Session –Media & Entertainment This talk covers a real-world application of NVIDIA's path rendering technology (NVPR) for accelerating

Not just zoomed & rotated,also perspective

Every glyph is rendered from itsoutline; no render-to-texture

Magnify & minify with

no transitionalpixelization

or tile poppingartifacts

No tricks

Page 22: NVIDIA Path Rendering · Recommended Press Session –Media & Entertainment This talk covers a real-world application of NVIDIA's path rendering technology (NVPR) for accelerating

Android Path Rendering Demo

Page 23: NVIDIA Path Rendering · Recommended Press Session –Media & Entertainment This talk covers a real-world application of NVIDIA's path rendering technology (NVPR) for accelerating

Mobile Web BrowserRendering with NV_path_rendering

Page 24: NVIDIA Path Rendering · Recommended Press Session –Media & Entertainment This talk covers a real-world application of NVIDIA's path rendering technology (NVPR) for accelerating

NVIDIA’s Approach to Path Rendering

• OpenGL extension to GPU-accelerate path rendering

• Uses “stencil, then cover” (StC) approach– Create a path object

– Step 1: “Stencil” the path object into the stencil buffer

• GPU provides fast stenciling of filled or stroked paths

– Step 2: “Cover” the path object and stencil test against its coverage stenciled by the prior step

• Application can configure arbitrary shading during the step

• Supports union of functionality from all major path rendering standards

– Includes all stroking embellishments

– Includes first-class text and font support

– Allows functionality to mix with traditional 3D and programmable shading

Page 25: NVIDIA Path Rendering · Recommended Press Session –Media & Entertainment This talk covers a real-world application of NVIDIA's path rendering technology (NVPR) for accelerating

Vertex assembly

Primitive assembly

Rasterization

Fragment operations

Display

Vertex operations

Application

Primitive operations

Texturememory

Pixel assembly(unpack)

Pixel operations

Pixel pack

Vertex pipelinePixel pipeline

Application

transformfeedback

readback

Framebuffer

Raster operations

Conventional OpenGL Pipeline

• Great for 3D geometry

– Triangles!

– Depth buffering

– Shading

• Also good for pixels and

textures

– Texturing

– Off-screen rendering

– Multisampling

– First-class sRGB

• No support for path

rendering �

Page 26: NVIDIA Path Rendering · Recommended Press Session –Media & Entertainment This talk covers a real-world application of NVIDIA's path rendering technology (NVPR) for accelerating

OpenGL Pipeline + NV_path_rendering

Vertex assembly

Primitive assembly

Rasterization

Fragment operations

Display

Vertex operations

Application

Primitive operations

Texturememory

Pixel assembly(unpack)

Pixel operations

Pixel pack

Vertex pipelinePixel pipeline

Application

transformfeedback

readback

Framebuffer

Raster operations

Path pipeline

Path specification

Transform path

Fill/StrokeStenciling

Fill/StrokeCovering

NV_path_renderingadds new

pipeline specifically

for path rendering

First class! ☺☺☺☺

Designed with

path rendering

standards and

features in mind

Page 27: NVIDIA Path Rendering · Recommended Press Session –Media & Entertainment This talk covers a real-world application of NVIDIA's path rendering technology (NVPR) for accelerating

Way Faster than Alternatives

Alternative APIs rendering same content

-

200.00

400.00

600.00

800.00

1,000.00

1,200.00

1,400.00

1,600.00

1,800.00

2,000.00

1

00x1

00

2

00x2

00

3

00x3

00

4

00x4

00

5

00x5

00

6

00x6

00

7

00x7

00

8

00x8

00

9

00x9

00

1000x10

00

1100x11

00

Window Resolution in Pixels

Fra

mes

per

seco

nd

Cairo

Qt

Skia Bitmap

Skia Ganesh FBO (16x)

Skia Ganesh Aliased (1x)

Direct2D GPU

Direct2D WARP

With NV_path_rendering

-

200.00

400.00

600.00

800.00

1,000.00

1,200.00

1,400.00

1,600.00

1,800.00

2,000.00

1

00

x10

0

2

00

x20

0

3

00

x30

0

4

00

x40

0

5

00

x50

0

6

00

x60

0

7

00

x70

0

8

00

x80

0

9

00

x90

0

10

00x1

00

0

11

00x1

10

0

Window Resolution in Pixels

Fra

mes

pe

r se

con

d

16x

8x

4x

2x

1x

Alternative approaches

are all much slower…

and insensitive to window

size � CPU bound �

Configuration

GPU: GeForce 480 GTX

CPU: Core i7 950 @ 3.07 GHz

NV_path_rendering

scales with smaller

window sizes ☺

anti-aliasing

samples/pixel:

Page 28: NVIDIA Path Rendering · Recommended Press Session –Media & Entertainment This talk covers a real-world application of NVIDIA's path rendering technology (NVPR) for accelerating

Details on (all much slower) alternatives

Same results, changed Y Axis

-

50.00

100.00

150.00

200.00

250.00

1

00x100

2

00x200

3

00x300

4

00x400

5

00x500

6

00x600

7

00x700

8

00x800

9

00x900

1000x1000

1100x1100

Window Resolution in Pixels

Fra

mes

per

seco

nd

Cairo

Qt

Skia Bitmap

Skia Ganesh FBO (16x)

Skia Ganesh Aliased (1x)

Direct2D GPU

Direct2D WARP

Alternative APIs rendering same content

-

200.00

400.00

600.00

800.00

1,000.00

1,200.00

1,400.00

1,600.00

1,800.00

2,000.00

1

00

x1

00

2

00

x2

00

3

00

x3

00

4

00

x4

00

5

00

x5

00

6

00

x6

00

7

00

x7

00

8

00

x8

00

9

00

x9

00

10

00

x1

00

0

11

00

x1

10

0

Window Resolution in Pixels

Fra

me

s p

er

seco

nd

Cairo

Qt

Skia Bitmap

Skia Ganesh FBO (16x)

Skia Ganesh Aliased (1x)

Direct2D GPU

Direct2D WARP

Page 29: NVIDIA Path Rendering · Recommended Press Session –Media & Entertainment This talk covers a real-world application of NVIDIA's path rendering technology (NVPR) for accelerating

Why a first-class OpenGL extension?

• Many have tried to layer path rendering atop a 3D API

– Microsoft’s Direct2D atop Direct3D

– Google’s Skia atop OpenGL ES

– Various efforts by Cairo, Adobe, and OpenVG layers

• Recurrent challenge

– Real-world path rendering content = lots of tiny paths

– Frequent 3D API state changes or CPU work in layered algorithms �CPU bound performance ����

• Other approaches wind up simply “GPU-assisted”, not GPU-accelerated

• With an OpenGL extension, the driver overhead can be mitigated

– Result is NV_path_rendering is truly GPU-accelerated ☺☺☺☺

Page 30: NVIDIA Path Rendering · Recommended Press Session –Media & Entertainment This talk covers a real-world application of NVIDIA's path rendering technology (NVPR) for accelerating

NV_path_rendering vs. “Layered”OpenGL Implementation

0

200

400

600

800

1,000

1,200

1,400

1,600

1,800

2,000

100x100 200x200 300x300 400x400 500x500 600x600 700x700 800x800 900x900 1000x1000 1100x1100

Window resolution in pixels

Fra

mes

per

sec

on

d

NV_path_rendering, display listed

NV_path_rendering

Layered OpenGL, display listed

Layered OpenGL

GeForce 570 GTX on fast Core i7

CPU bound atlow res �

CPU bound �

GPU bound ☺

GPU bound ☺ Conclusion• Layered implementations

very CPU bound;• NV_path_rendering is

actually GPU bound

other alternatives even more CPU bound �

Page 31: NVIDIA Path Rendering · Recommended Press Session –Media & Entertainment This talk covers a real-world application of NVIDIA's path rendering technology (NVPR) for accelerating

Evaluating Power Efficiency & Interactivity

• System performance expectations

• Rule of Thumb

• Metrics ofinterest

GPU

power

efficiency >

CPU

power

efficiency

GPU

performance > CPU

performance

“Faster you can efficiently get the frame done,

sooner you can idle the power usage!”

frames / second, in Hertz

� efficiency

� interactivity

energy / frame, in Millijoules

Page 32: NVIDIA Path Rendering · Recommended Press Session –Media & Entertainment This talk covers a real-world application of NVIDIA's path rendering technology (NVPR) for accelerating

Latency & Power-efficiencyMeasurements

• Skia CPU

– 81 milliseconds, 12.3 fps

– 1 unit of energy to draw a frame

• Native NV_path_rendering

– 22.2 milliseconds, 45 fps

– 0.44 units of energy to draw a frame

• 56% less energy per frameat 3.6x interactivity!

scene: New York Timesweb page capture

Fine print• All glyphs rendered from paths• Continuous rendering, for reliable power measurements • Using NVPR Demo for apples-to-apples rendering• Tegra K1 device running Android• Dual core OpenGL driver used• Preliminary data, still improving GPU results ☺• Comparing power at disparate frame rates is tricky

Page 33: NVIDIA Path Rendering · Recommended Press Session –Media & Entertainment This talk covers a real-world application of NVIDIA's path rendering technology (NVPR) for accelerating

Wow, 56% less energy/frame

at 3.6x the interactivity!

Consequence of GPU-accelerated algorithms for path rendering

Page 34: NVIDIA Path Rendering · Recommended Press Session –Media & Entertainment This talk covers a real-world application of NVIDIA's path rendering technology (NVPR) for accelerating

GPU Path Rendering:More Interactive for Less Power

0

10

20

30

40

50

60

smaller is betterbigger is better

Skia CPU NVpr GPU NVpr GPUSkia CPU

Fra

mes

/sec

ond

Mea

sure

d en

ergy

per

fram

e

Interactivity Energy Efficiency

Page 35: NVIDIA Path Rendering · Recommended Press Session –Media & Entertainment This talk covers a real-world application of NVIDIA's path rendering technology (NVPR) for accelerating

Where does theenergy get spent?Breakdown…

MemorySystemGPUCPU

smaller is better

NVpr GPU @ 45 fpsSkia CPU @ 12.3 fps

Mea

sure

d en

ergy

per

fram

e

• CPU dominates power

consumption

• GPU quite efficient

when GPU path

rendering

Last slides graph detailed…

Page 36: NVIDIA Path Rendering · Recommended Press Session –Media & Entertainment This talk covers a real-world application of NVIDIA's path rendering technology (NVPR) for accelerating

� regular gridon CPU sub-optimal antialiasing

� jitter patternon GPU for better antialiasing

GPU Offers Jittered Sampling for Free

� conflation artifacts on CPU � conflation free on GPUEliminate Conflation Artifacts

Multiple color samples per pixel

yuckycolor bleeding

Cairo

NV_path_rendering

Skia

��

feathers?weird big holes

Stroking approximations avoided by GPU

� GPU

� Qt

� Cairo

Moiréartifacts

Similarfor Qt &Skia

Proper gradient filtering on GPU

Better Quality on GPU

Page 37: NVIDIA Path Rendering · Recommended Press Session –Media & Entertainment This talk covers a real-world application of NVIDIA's path rendering technology (NVPR) for accelerating

New Path Rendering Capabilities tooArbitrary programmable shader

on paths— bump mapping

3D and vector graphics mix

2D in perspective is free

Page 38: NVIDIA Path Rendering · Recommended Press Session –Media & Entertainment This talk covers a real-world application of NVIDIA's path rendering technology (NVPR) for accelerating

Better Text

• Old way

– CPU renderer glyphs into bitmaps

• For every glyph, size, rotation, etc.

– Download glyphs to texture atlas

• Juggling lots of bitmaps

• Better way

– Simply draw glyphs directly

from their outline path

– Simpler, faster

– Mathematically correct

Page 39: NVIDIA Path Rendering · Recommended Press Session –Media & Entertainment This talk covers a real-world application of NVIDIA's path rendering technology (NVPR) for accelerating

First-class, Resolution-independentFont Support

• Fonts are a standard, first-class part of allpath rendering systems

– Foreign to 3D graphics systems such as OpenGL and Direct3D, but natural for path rendering

– Because letter forms in fonts have outlines defined with paths

• TrueType, PostScript, and OpenType fonts all use outlines to specify glyphs

• NV_path_rendering makes font support easy– Can specify a range of path objects with

• A specified font

• Sequence or range of Unicode character points

• No requirement for applications use font API to load glyphs

– You can also load glyphs “manually” fromyour own glyph outlines

Page 40: NVIDIA Path Rendering · Recommended Press Session –Media & Entertainment This talk covers a real-world application of NVIDIA's path rendering technology (NVPR) for accelerating

Bringing Same Path Rendering Technology toAll NVIDIA Platforms

• All Fermi, Kepler, and Maxwell GPUS have it!

Page 41: NVIDIA Path Rendering · Recommended Press Session –Media & Entertainment This talk covers a real-world application of NVIDIA's path rendering technology (NVPR) for accelerating

First Mobile Support: K1

Tegra K1192-core Super Chip

Supporting

NV_path_rendering

extension today on

Android & Linux

Page 42: NVIDIA Path Rendering · Recommended Press Session –Media & Entertainment This talk covers a real-world application of NVIDIA's path rendering technology (NVPR) for accelerating

Web Standards Integration

• Google’s Skia API for 2D graphics

– Used by Android graphics

– And Chrome browser

• Now uses NV_path_rendering when available

– Same Skia API, just uses NV_path_rendering when

available on NVIDIA GPUs

– Provides hardware-independence

– Natural step to use by Blink-based browsers

Page 43: NVIDIA Path Rendering · Recommended Press Session –Media & Entertainment This talk covers a real-world application of NVIDIA's path rendering technology (NVPR) for accelerating

MappingSkiatoNVpr

parameters to draw method

Path Generation

Canvas.draw(…, Paint)

initial Path

PathEffect

effect Path

Stroking

Path

Rasterization

scan conversion

Rasterizerinitial mask

MaskFilter

mask

Shading

Shader

initial “source” image

ColorFilter

Transfer

XferMode

blending

initial “source” image

“source” image

modified

destination

image

original

destination

image

Pathspecification

and bakingglPathCommandsNV

PathStenciling

glStencilFillPathNV

or

glStencilStrokePathNV

PathCoveringglCoverFillPathNVorglCoverStrokePathNV

Original diagram:

http://xenomachina.com/

android-canvas-pipeline.svg.gz

Page 44: NVIDIA Path Rendering · Recommended Press Session –Media & Entertainment This talk covers a real-world application of NVIDIA's path rendering technology (NVPR) for accelerating

Content Creation Too

• Working with Adobe to GPU-accelerated

Illustrator

– Work in-progress, in beta now

– Uses NV_path_rendering technology

Page 45: NVIDIA Path Rendering · Recommended Press Session –Media & Entertainment This talk covers a real-world application of NVIDIA's path rendering technology (NVPR) for accelerating

GPU-acceleration ofIllustrator Example• Scene complexity

– ~11,000 paths

– ~2000 transparent objects

– ~2000 gradients

• CPU vs. GPU at rendering same scene

– CPU: Intel Xeon E3-1240

– GPU: NVIDIA GeForce GTX 780 Ti

~11x~4.7xGain

5538GPU (ms)

608178CPU (ms)

3840x

2160

1680x

1050

Resolution

Page 46: NVIDIA Path Rendering · Recommended Press Session –Media & Entertainment This talk covers a real-world application of NVIDIA's path rendering technology (NVPR) for accelerating

S4867 - The Path to Fast Vector Art Rendering in Adobe Illustrator� Presenter: Vineet Batra

Senior Computer Scientist, Adobe

� Day: Wednesday, March 26, 2014

� Time: 16:30 - 16:55

� Location: Room 211B

� Session Level: Intermediate

� Session Type: Talk

� Tags: Media & Entertainment Summit; Recommended Press Session – Media & Entertainment

This talk covers a real-world application of NVIDIA's path rendering technology (NVPR) for accelerating 2D vector graphics, based on Adobe PDF model. We shall demonstrate the use of this technology for real-time, interactive rendering in Adobe Illustrator CC. The substantial performance improvement is primarily attributed to NV_path_rendering’s ability to render complex cubic Bezier curves independently of device resolution. Further, we shall also discuss the use of NVIDIA's Blend extension to support compositing of transparent artwork in conformance with the Porter-Duff model using 8X-multisampling and per-sample fragment Shaders. Using these technologies, we achieve performance of 30 FPS when rendering and scaling a complex artwork consisting of a hundred thousand cubic Bezier curves with ten thousand blend operations per frame using GTX 780 TI graphics card.

Page 47: NVIDIA Path Rendering · Recommended Press Session –Media & Entertainment This talk covers a real-world application of NVIDIA's path rendering technology (NVPR) for accelerating

Conclusions

• NVIDIA is GPU-accelerating path rendering– High-performance & power-efficient

– Full feature set, matching established standards

– First-class solution, done as OpenGL extension

– Now available on Tegra mobile GPUs

• Working to improve web implementations– Skia now has NV_path_rendering support

• Apps can target a vendor-independent API

– Demonstrated prototype of web browser

• Also working on content creation too

Page 48: NVIDIA Path Rendering · Recommended Press Session –Media & Entertainment This talk covers a real-world application of NVIDIA's path rendering technology (NVPR) for accelerating

Questions?

Page 49: NVIDIA Path Rendering · Recommended Press Session –Media & Entertainment This talk covers a real-world application of NVIDIA's path rendering technology (NVPR) for accelerating

S4810 - NVIDIA Path Rendering:Accelerating Vector Graphics for the Mobile Web� Day: Tuesday, March 25, 2014

� Time: 15:30 - 15:55

� Location: Room LL21C

� Session Level: All

� Session Type: Talk

� Tags: Mobile Summit; Real-Time Graphics Applications; In-Vehicle Infotainment (IVI) & Safety; Media & Entertainment

Come see how NVIDIA is transforming your web browser into a fully GPU-accelerated experience. NVIDIA Path Rendering provides GPU-acceleration for web graphics standards such as Scalable Vector Graphics (SVG), HTML 5 Canvas, PDF documents, and font rendering. On mobile devices, screen resolutions and densities vary so vector graphics is a natural way to deploy 2D graphics experience such as games, maps, and traditional web pages.

Watch as we demonstrate accelerated SVG viewers and web browsers on Tegra devices. We do this with an OpenGL extension available on all of NVIDIA's latest desktop and mobile GPUs.