Presentation is loading. Please wait.

Presentation is loading. Please wait.

Tomas Mőller © 2000 Speed-up Techniques for Real-Time Rendering or “What makes your real-time video game fly” Tomas Möller Chalmers University of Technology,

Similar presentations


Presentation on theme: "Tomas Mőller © 2000 Speed-up Techniques for Real-Time Rendering or “What makes your real-time video game fly” Tomas Möller Chalmers University of Technology,"— Presentation transcript:

1 Tomas Mőller © 2000 Speed-up Techniques for Real-Time Rendering or “What makes your real-time video game fly” Tomas Möller Chalmers University of Technology, Sweden

2 Tomas Mőller © 2000 Motivation Graphics hardware 2x faster in 6 months! Wait… then it will be fast enough! NOT! We will never be satisfied – Screen resolution: 2000x1000 – Realism: global illumination – Geometrical complexity: no upper limit!

3 Tomas Mőller © 2000 Keep this in mind during lecture… Rendering pipeline: 3 stages – Application (CPU but also bandwidth from CPU to graphics hardware) – Geometry (transform, lighting) – Rasterizer (fill, texture, per pixel ops) To get faster overall performance: – Reduce time spent in bottleneck stage!

4 Tomas Mőller © 2000 Overview of lecture The scene graph Culling techniques Level-of-detail rendering (LODs) Combination of techniques Collision detection Resources and pointers

5 Tomas Mőller © 2000 The Scene Graph DAG – directed acyclic graph – Simply an n-ary tree without loops Uses: collision detection and faster rendering internal node=

6 Tomas Mőller © 2000 Contents of Scene Graph Leaves contains geometry Each node holds a – Bounding Volume (BV) – pointers to children – possibly a transform Examples of BVs: spheres, boxes The BV in a node contains all geometry in its subtree

7 Tomas Mőller © 2000 Scene graph example circles=BVs scene graph root

8 Tomas Mőller © 2000 Transforms in the Scene Graph Put a transform in each internal node Gives instancing, and hierarchical animation Move right, Rotate 45° Move up

9 Tomas Mőller © 2000 Example: a running leg AB C No hierarchy: one transform 21 3 Hierarchy:3 transforms LegXform KneeFootHipXform

10 Tomas Mőller © 2000 Culling Techniques “To cull” means “to select from group” In graphics context: do not process data that will not contribute to the final image The “group” is the entire scene, and the selection is a subset of the scene that we do not consider to contribute

11 Tomas Mőller © 2000 Culling: Overview Backface culling Hierarchical view-frustum culling Portal culling Detail culling Occlusion culling

12 Tomas Mőller © 2000 Culling examples view frustumdetail backface portal occlusion

13 Tomas Mőller © 2000 Backface Culling Simple technique to discard polygons that faces away from the viewer Can be used for: – closed surface (example: sphere) – or whenever we know that the backfaces never should be seen (example: walls in a room) Two methods (screen space, eye space) Which stages benefits? Rasterizer, but also Geometry (where test is done)

14 Tomas Mőller © 2000 Backface culling (cont’d) Often implemented for you in the API OpenGL: glCullFace(GL_BACK); How to determine what faces away? First, must have consistently oriented polygons, e.g., counterclockwise 0 1 2 front facing 0 1 2 back facing

15 Tomas Mőller © 2000 How to cull backfaces screen space 1 0 2 front 0 1 2 back front back eye eye space

16 Tomas Mőller © 2000 View-Frustum Culling Bound every “natural” group of primitives by a simple volume (e.g., sphere, box) If a bounding volume (BV) is outside the view frustum, then the entire contents of that BV is also outside (not visible) Avoid further processing of such BV’s and their containing geometry

17 Tomas Mőller © 2000 Can we accelerate VF culling further? Do what we always do in graphics… Use a hierarchical approach, e.g, the scene graph Which stages benefits? – Geometry and Rasterizer – Bus between CPU and Geometry

18 Tomas Mőller © 2000 Example of Hierarchical View Frustum Culling root camera

19 Tomas Mőller © 2000 Portal Culling Images courtesy of David P. Luebke and Chris Georges Average: culled 20-50% of the polys in view Speedup: from slightly better to 10 times

20 Tomas Mőller © 2000 Portal culling example In a building from above Circles are objects to be rendered

21 Tomas Mőller © 2000 Portal Culling Algorithm Divide into cells with portals (build graph) For each frame: – Locate cell of viewer and init 2D AABB to whole screen – * Render current cell with VF cull w.r.t. AABB – Traverse to closest cells (through portals) – Intersection of AABB & AABB of traversed portal – Goto *

22 Tomas Mőller © 2000 Portal overestimation To simplify: actual portaloverestimated portal

23 Tomas Mőller © 2000 Portal Culling Algorithm When to exit: – When the current AABB is empty – When we do not have enough time to render a cell (“far away” from the viewer) Also: mark rendered objects Which stages benefits? – Geometry, Rasterizer, and Bus Source (for Performer): http://www.cs.virginia.edu/~luebke/

24 Tomas Mőller © 2000 Detail Culling Idea: objects whose projected BV occupy less than N pixels are culled This is an approximative algorithm as the things you cull away may actually contribute to the final image Advantage: trade-off quality/speed Which stages benefits? – Geometry, Rasterizer, and Bus

25 Tomas Mőller © 2000 Example of Detail Culling detail culling OFF Not much difference, but 80-400% faster Good when moving detail culling ON Images courtesy of ABB Robotics Products, created by Ulf Assarsson

26 Tomas Mőller © 2000 Projection Projection gets halved when distance is doubled eye

27 Tomas Mőller © 2000 Projection (cont’d) dot( d, ( c - v )) is distance along d p=nr/ dot( d, ( c - v )) is estimation of projected radius  p 2 is the area (eye) v (near plane) n d (normalized view direction) r c

28 Tomas Mőller © 2000 Occlusion Culling Main idea: Objects that lies completely “behind” another set of objects can be culled Hard problem to solve efficiently

29 Tomas Mőller © 2000 Example final image Note that “Portal Culling” is an algorithm for occlusion culling

30 Tomas Mőller © 2000 Occlusion culling algorithm Use some kind of occlusion representation O R for each object g do: if( not Occluded(O R,g)) render(g); update(O R,g); end;

31 Tomas Mőller © 2000 Occlusion culling algorithm example Process from front to back Maintain an occlusion horizon (yellow)

32 Tomas Mőller © 2000 Occlusion culling algorithm example To process tetrahedron (which is behind grey objects): – find axis-aligned box of projection – compare against occlusion horizon culled

33 Tomas Mőller © 2000 Occlusion culling algorithm example When an object is considered visible: Add its “occluding power” to the occlusion representation

34 Tomas Mőller © 2000 Level-of-Detail Rendering Use different levels of detail at different distances from the viewer More triangles closer to the viewer

35 Tomas Mőller © 2000 LOD rendering Not much visual difference, but a lot faster Use area of projection of BV to select appropriate LOD

36 Tomas Mőller © 2000 Scene graph with LODs Car chair

37 Tomas Mőller © 2000 Far LOD rendering When the object is far away, replace with a quad of some color When the object is really far away, do not render it (detail culling)! Which stages benefits? – Geometry, Rasterizer, and Bus

38 Tomas Mőller © 2000 Combinations of Techniques Not trivial to combine! VF Cull + LOD == minimal if serious about performance Indoors: LOD + portal culling Outdoors (cities, suburbia): VF Cull + LOD + occlusion culling

39 Tomas Mőller © 2000 Real-Time Rendering? In computer graphics, “real-time” is used in a soft way: say >30 fps for most frames In other contexts, it’s a tougher requirement: the framerate must never be <30 fps, i.e., constant framerate What can we do? – Reactive LOD algorithm – Reactive detail culling – Reactive visual quality

40 Tomas Mőller © 2000 Collision Detection To get interesting and more realistic interaction between geometric objects in an application Cannot test each triangle against each other: O(n*m) Alas, need smarter approaches Use BVs because these are cheap to test Use a scene graph (hiearchy) – For efficiency use only one triangle per leaf

41 Tomas Mőller © 2000 How to collide two scene graphs? Three cases: Reach two internal nodes’ BVs – If not overlap, then exit – If overlap, then descend into the children of the internal node with largest volume Reach an internal node and a triangle – Descend into the internal node If you reach two triangles – Test for overlap Start recursion with the two roots of the scene graphs

42 Tomas Mőller © 2000 Bounding Volumes in Collision Detection Wanted: tight fitting BV, and fast to test for overlap Common choices are – Spheres – Axis aligned box – Oriented box

43 Tomas Mőller © 2000 Triangle-triangle overlap test Compute the line of intersection between the two planes Compute the intersection interval between this line and triangles – gives two intervals If intervals overlap then triangles overlap!

44 Tomas Mőller © 2000 Simpler collision detection Only shoot rays to find collisions, i.e., approximate an object with a set of rays Cheaper, but less accurate Can use the scene graph again or a BSP tree

45 Tomas Mőller © 2000 Can you compute the time of a collision? Move ball, test for hit, move ball, test for hit… can get “quantum effects”! In some cases it’s possible to find closed- form expression: t=s/v v s

46 Tomas Mőller © 2000 Collision detection resources Check out www.realtimerendering.comwww.realtimerendering.com RAPID: uses OBBs SOLID: handles deformable objects Eberly: code for dynamic CD – where no quantum effects can occur – Each object has a velocity direction

47 Tomas Mőller © 2000 Resources and Pointers http://www.realtimerendering.com Journal of Graphics Tools – http://www.acm.org/jgt/ http://www.acm.org/jgt/ – source for projected screen area of box – intersection test routines – occlusion culling http://www.magic-software.com


Download ppt "Tomas Mőller © 2000 Speed-up Techniques for Real-Time Rendering or “What makes your real-time video game fly” Tomas Möller Chalmers University of Technology,"

Similar presentations


Ads by Google