SlideShare ist ein Scribd-Unternehmen logo
1 von 84
DEUS EX MANKIND DIVIDED
Labs R&D: The Rendering Techniques of Deus EX: Mankind
Divided and Rise of the Tomb Raider
SIGGRAPH 2015
www.eidosmontreal.com/www.square-enix-montreal.com
DEUS EX MANKIND DIVIDED
VFX Effect for Adam Jensen
Titan
2
v
Nicolas Longhamps
Senior Technical Artist at Labs, Eidos Montreal
Peter Sikachev
3D Programmer at Labs, Eidos Montreal
DEUS EX MANKIND DIVIDED
Titan
3
VFX Description
 Trademark effect for DXMD
 A protective shell covering character
 Should look solid but feel “alive”
 Should look similar to CG version
v
DEUS EX MANKIND DIVIDED
Titan
4
Visual Features
 Triangular surface
 Animation
 Hit reaction
 First-person vignette
v
DEUS EX MANKIND DIVIDED
Titan
5
Tessellation
 Hardware tessellation
 Dynamic tessellation factor based on distance
 Small triangles used for geometry animations and displacement
 Tessellation barycentric coordinates used for edge bevel effect
v
DEUS EX MANKIND DIVIDED
www.eidosmontreal.com
www.square-enix-montreal.com
Titan
6
Geometry Animation
 Masks control specific areas
 “Living skin”: periodic surface disturbance
 Full-body noise on hit
 Sequential vertex/normal offset
v
DEUS EX MANKIND DIVIDED
www.eidosmontreal.com
www.square-enix-montreal.com
Titan
7
Hit Reaction
 Weapon hits
 Parameters set per ammunition type
 Hits found on CPU and passed in CB
 Titan mesh animated near hit areas
 Underlying character mesh is shown in holes only
 (De)construction
 Reusing proxy weapon hits
 Placed at joints selected by artists
v
DEUS EX MANKIND DIVIDED
www.eidosmontreal.com
www.square-enix-montreal.com
Titan
8
Texture and Normal Map
 Normal bevel (helps smooth edges)
 Normal softening
 Detail normal/data maps for normal animation
 Surface noise map to simulate animated micro detail
 Custom back reflections (aka ‘fake specular’)
v
DEUS EX MANKIND DIVIDED Normal Bevel Off
DEUS EX MANKIND DIVIDED Normal Bevel On
DEUS EX MANKIND DIVIDED Normal Softening Off
DEUS EX MANKIND DIVIDED Normal Softening On
DEUS EX MANKIND DIVIDED Detail Normal Map Off
DEUS EX MANKIND DIVIDED Detail Normal Map On
DEUS EX MANKIND DIVIDED
www.eidosmontreal.com
www.square-enix-montreal.com
Titan
15
First Person Vignette
 Post Process effect in same visual style as Titan
 Should convey the presence of armor but not obstruct view
 Artist created mesh rendered in screen space
 Shader supports Titan-like effects :
 Sequential normal and vertex position offset animation
 Edge bevel
 (De)construction
 Other shader effects :
 Refraction
 Chromatic aberration
v
DEUS EX MANKIND DIVIDED
www.eidosmontreal.com
www.square-enix-montreal.com
Titan
16
v
Implementation Details
 Not a performance-critical feature (~0.1 ms per character with Titan)
 Flat normal using pos gradients
 Tessellation was retro-fitted to the engine
 Especially painful on PS4
 Number of simultaneous hits is limited (32)
 Limit displacement based on camera distance and artist mask
DEUS EX MANKIND DIVIDED 17
vParallax Occlusion Mapping
Peter Sikachev
3D Programmer at Labs, Eidos Montreal
DEUS EX MANKIND DIVIDED
Parallax Occlusion Mapping
18
Relaxed Cone-Step Tracing Refresher
 Introduced in GPU Gems 3 [Policarpo07]
 Pre-generate a cone-step map (CSM) acceleration structure
 Use CSM instead linear steps
 Improve intersection with binary steps
v surface
DEUS EX MANKIND DIVIDED
Parallax Occlusion Mapping
19
Relaxed Cone-Step Tracing Refresher
 Introduced in GPU Gems 3 [Policarpo07]
 Pre-generate a cone-step map (CSM) acceleration structure
 Use CSM instead linear steps
 Improve intersection with binary steps
view raysurface
cone
DEUS EX MANKIND DIVIDED
Parallax Occlusion Mapping
20
Relaxed Cone-Step Tracing Refresher
 Introduced in GPU Gems 3 [Policarpo07]
 Pre-generate a cone-step map (CSM) acceleration structure
 Use CSM instead linear steps
 Improve intersection with binary steps
view raysurface
cone
DEUS EX MANKIND DIVIDED
Parallax Occlusion Mapping
21
Blending POM surfaces with puddles
 Water should look like it is between reliefs
 Use height as a threshold between two materials
fMaterialMask *= 1.0f - saturate( (fPOMHeight - u_fPOMThreshold) * u_fPOMMultiplier )
DEUS EX MANKIND DIVIDED
Visuals Examples
All Rights Reserved SquareEnix Eidos Montreal 2015
DEUS EX MANKIND DIVIDED
www.eidosmontreal.com
www.square-enix-montreal.com
DEUS EX MANKIND DIVIDED
www.eidosmontreal.com
www.square-enix-montreal.com
Height blend threshold = 1 (no blend)
DEUS EX MANKIND DIVIDED
www.eidosmontreal.com
www.square-enix-montreal.com
Height blend threshold = 0 (no blend)
DEUS EX MANKIND DIVIDED
www.eidosmontreal.com
www.square-enix-montreal.com
Height blend threshold = 0.4
DEUS EX MANKIND DIVIDED
www.eidosmontreal.com
www.square-enix-montreal.com
Height blend threshold = 0.8
DEUS EX MANKIND DIVIDED
Parallax Occlusion Mapping
28
Depth Center
 An artist-inspired idea
 Feature from Marmoset Toolbag 2
 Allows details to stick out
 Used on charactersv
EyeDirTangentSpace.xy *= POMRange;
EyeDirTangentSpace /= max(EyeDirTangentSpace.z, NUMERIC_EPSILON);
float Distance = length(EyeDirTangentSpace.xy);
float2 BaseOffset = EyeDirTangentSpace.xy * POMDepthCenter / (Distance + 1.0f);
view ray
POM surface
mesh surface
DEUS EX MANKIND DIVIDED
Parallax Occlusion Mapping
29
Depth Center
 An artist-inspired idea
 Feature from Marmoset Toolbag 2
 Allows details to stick out
 Used on charactersv
EyeDirTangentSpace.xy *= POMRange;
EyeDirTangentSpace /= max(EyeDirTangentSpace.z, NUMERIC_EPSILON);
float Distance = length(EyeDirTangentSpace.xy);
float2 BaseOffset = EyeDirTangentSpace.xy * POMDepthCenter / (Distance + 1.0f);
view ray
POM surface
mesh surface
DEUS EX MANKIND DIVIDED
Visuals Examples
All Rights Reserved SquareEnix Eidos Montreal 2015
DEUS EX MANKIND DIVIDED
Without POM
31
DEUS EX MANKIND DIVIDED
With POM
32
DEUS EX MANKIND DIVIDED
Without POM
33
DEUS EX MANKIND DIVIDED
With POM
34
DEUS EX MANKIND DIVIDED
Parallax Occlusion Mapping
35
Optimizations and Cost
 Reduce number of cone/binary steps based on distance
 Texture mip is approximated as there were no POM
 Incremental cost: ~1 ms full-screen 1080p up-close at PS4
v
DEUS EX MANKIND DIVIDED 36
Pure Hair v
Presented by Anton Kai Michels
R&D Programmer for Labs at Eidos Montreal
Uriel Doyon
Technical Director for Labs at Eidos Montreal
DEUS EX MANKIND DIVIDED
Pure Hair Data Model
37
Asset Types
 Textured head
 Hair mesh
 Hair strands
Textured Head
v
DEUS EX MANKIND DIVIDED
Pure Hair Data Model
38
Asset Types
 Textured head
 Hair mesh
 Hair strands
Textured Head + Hair Strands
vv
DEUS EX MANKIND DIVIDED
Pure Hair Data Model
39
Asset Types
 Textured head
 Hair mesh
 Hair strands
Hair Mesh
v
DEUS EX MANKIND DIVIDED
Pure Hair Data Model
40
Asset Types
 Textured head
 Hair mesh
 Hair strands
Hair Strands
v
DEUS EX MANKIND DIVIDED
Pure Hair Data Model
41
Asset Types
 Textured head
 Hair mesh
 Hair strands
Hair MeshHair Mesh + Hair Strands
v
DEUS EX MANKIND DIVIDED
Pure Hair Hair Strands
42
Wisp Data
 Required at runtime
 Exported into Dawn Engine
 Keep DCC wisps if available
 Else grouping splines manually
 Generate master strand per wisp
Master strands (one per wisp)
vv
DEUS EX MANKIND DIVIDED
Pure Hair Hair Strands
43
Master to slave skinning
 Less strands to simulate
 Shape preserving LODs
 Retains haircut shape despite simulation
Slave strands (many per wisp)
vv
DEUS EX MANKIND DIVIDED
Pure Hair Hair Strands
44
Shape preserving LODs
 Reduce strand count while increasing strand width
 LOD is applied per wisp, so shape is preserved
v
LOD 0 LOD 1 LOD 2 LOD 3
DEUS EX MANKIND DIVIDED
Pure Hair Simulation
Variable number of vertices
 Between 4 to 32 vertices per strand
 Master strands within groups have same vertex count
 Slave strands can have any number of vertices
 Fixed length enforcing (a la Muller)
vv
DEUS EX MANKIND DIVIDED
Pure Hair Simulation vv
World space simulation
 Issues on fast moving objects
 Calculate and scale root delta position
 Apply it to previous frame positions
DEUS EX MANKIND DIVIDED
Pure Hair Simulation vv
Wind
 Build a cone from wind direction
 Gives each hair slightly different vector
 Makes hairs spread nicely
 Creates desirable variation between frames
DEUS EX MANKIND DIVIDED
Pure Hair Simulation
48
vv
Wisp Interactions
 Slave strands affected by surrounding masters if close enough
 Decided on stateless approach
 Simplifies LOD handling
 View frustum changes
 Slaves only affected by closest master strand in reference position
DEUS EX MANKIND DIVIDED
v
Lighting probes
 Evaluate lighting over hair bounds
 Store directional intensities using cubemaps or spherical harmonics
 Reduces lighting cost significantly
 Head occlusion approximated by sphere in shader
Tangent based lighting
 Use tangent based lighting instead of normal
 Especially visible in diffuse because strands are billboarded
Pure Hair Lighting Model
DEUS EX MANKIND DIVIDED 50
Dual specular highlights
 Most significant hair lighting feature
 Adding tangent noise breaks "audio tape" look.
Fresnel factor
 More important than back scattering.
 Extra term in the lighting equation.
v
Pure Hair Lighting Model
1 specular highlight Dual specular highlights
Dual specular highlights
+ tangent noise
DEUS EX MANKIND DIVIDED
Pure Hair Translucency
51
Per Pixel Linked List (PPLL)
 Node buffer = 200Mb in 1080p
 With 12 bytes per node
 Koverdraw = 8
 More overdraw makes resolve more expensive
vv
Fill PPLL
Resolve Color
Resolve Depth
DEUS EX MANKIND DIVIDED
Pure Hair Translucency
52
PPLL with Hair Depth Pre-Pass
 Optimization for PPLL, greatly benefits LODs
 Allows smaller Koverdraw (~ 3) for the same quality
 Artists must limit translucency to strand tips and mesh edges
 ~100Mb total
vv
Fill PPLL
Resolve Color
Resolve Depth
Hair Depth Pre-pass
DEUS EX MANKIND DIVIDED 53
Depth Peeling
 Use atomics to compute closest depths 0 and 1
 Fill nodes only if they are entry 0 or 1
 Similar performance to PPLL with depth pre-pass
 Half memory cost with no overflow
 ~50Mb total
Resolve Depth (D0 or D1)
Fill Nodes
Resolve Color
DepthPeeling,AlphaAcc
Pure Hair Translucency
DEUS EX MANKIND DIVIDED 54
Depth Peeling vs PPLL with Depth Pre-Pass
 Performance comparison on a Radeon HD 7970, using Adam Jensen, cinematic LOD
Fullscreen Near Far*
PPLL & Depth Pre-pass 1.774 1.004 0.852
Resolve PPLL 2.059 0.422 0.146
Depth Peeling 1.452 0.892 0.833
Resolve DP 1.907 0.338 0.098
Note: Depth Peeling is faster at close range in part because the PPLL depth pre-pass does not have early depth, and also because data access have better locality. Still this is very hardware
specific.
Pure Hair Translucency
DEUS EX MANKIND DIVIDED
Presented by Anton Kai Michels
R&D Programmer for Labs at Eidos Montreal
Motion Blur
55
v
Samuel Delmont
Senior 3D Programmer for Labs at Eidos Montreal
DEUS EX MANKIND DIVIDED
Motion Blur
56
 Real cameras produce motion blur by accumulating exposure of
moving objects while shutter is open
 Mimicking this in video games adds realism and a cinematic
look
 Helps reduce the perception of frame rate
v
DEUS EX MANKIND DIVIDED
Motion Blur
Inspiration
 Crysis, [Sousa08]
 Iterative sampling approach : multiple blur passes
 [McGuire13]
 Tile neighborhood max velocity removes hard edges
v
DEUS EX MANKIND DIVIDED
Motion Blur v
Overview
 Motion Blur done in 2 steps:
 Velocity Buffer Generation
Velocity buffer is RG_FLOAT16, contains motion vectors in screen
space coordinates (delta UV of a pixel’s previous position and
current position)
 Blur
Post process, uses velocity buffer to compute blur direction and
samples offsets.
 Velocity buffer is full resolution: used for temporal reprojection
DEUS EX MANKIND DIVIDED
Motion Blur v
Velocity Buffer Generation
 Dynamic objects
 Velocity caused by camera movement + object movement
+ object skinned deformation
 Applies to opaque dynamic/skinned primitives
 Static objects
 Velocity caused by camera movement only
 Applies to opaque static primitives
DEUS EX MANKIND DIVIDED
Motion Blur
60
v
v
Dynamic Object Velocity Pass
 Render dynamic objects using:
 Previous world matrix
 Previous skinning matrix if applicable
 Any previous vertex deformation
 Write in stencil buffer to reduce static object velocity pass overhead
Velocity buffer RG_Float16 visualization
DEUS EX MANKIND DIVIDED
Motion Blur
61
v
Static Object Velocity Pass
 Screen space pass, skip dynamic object pixels from previous pass
using stencil buffer
 Calculate pixel’s last frame screen position using depth buffer and
previous frame’s view-projection matrix
DEUS EX MANKIND DIVIDED
Motion Blur
62
Blur
 Half or full resolution
 Artist velocity exponent, smoothens velocity curve and
diminishes motion blur on low velocity targets
 To deal with hard edge artifacts, use tile max velocity
 Compute max in 20x20 pixel tiles
 Compute max in 3x3 tile neighborhood
DEUS EX MANKIND DIVIDED
Motion Blur
63
Blur
 Blur done in two passes
 Low Frequency: blur 4 samples along tile max velocity
Tile neighborhood max velocity
Base Samples
DEUS EX MANKIND DIVIDED
Motion Blur
64
Blur
 Blur done in two passes
 Low Frequency: blur 4 samples along tile max velocity
 High Frequency: blur between samples from first pass
Tile neighborhood max velocity
Base Samples
DEUS EX MANKIND DIVIDED
Motion Blur
65
Blur
 1st Pass blur weighted with pixel velocity
 2nd Pass can’t use original pixel velocity
 1st Pass outputs a comparison value to alpha channel
 2nd Pass reads these values and uses them for weighting
First pass velocity
comparison average
First pass blur
4 samples
Second pass blur
4 samples
DEUS EX MANKIND DIVIDED
Motion Blur
66
Blur Recap
 Separate iterative passes give high quality at lower cost.
 Total of 8 samples for virtually 16 samples.
 Tile max deals with hard edge artifact.
Hard edge artifact without
Tile neighbor max
No hard edge with
Tile neighbor max
DEUS EX MANKIND DIVIDED
Motion Blur
67
Performance
 0.8ms on PS4, includes:
 Color buffer downsample
 Velocity buffer downsample
 Tile max and tile neighborhood max passes
 Both separate blur passes
 Bilateral upsampling
v
DEUS EX MANKIND DIVIDED 68
Heart and Soul v
Presented by Anton Kai Michels
R&D Programmer for Labs at Eidos Montreal
Dominique Demers
Director of Photography at Eidos Montreal
Philippe Desrosiers
Lead Interactive Objects at Eidos Montreal
DEUS EX MANKIND DIVIDED 69
Heart and Soul v
Heart of the machine
 Deus Ex very interconnected
 Living, breathing world
 Applies to environments
 Interaction increases immersion
DEUS EX MANKIND DIVIDED 70
Heart and Soul v
Creating Interaction
 Dawn Engine
 Artist & game designer created behaviors
 Modular System
 Quick Iteration
 Fast Prototyping
 Coherent and standardized
DEUS EX MANKIND DIVIDED 71
Heart and Soul
Graph View
 Scripting UI
 Node based
 Display and edit everything
 Lego block approach
 Connections visualized as lines
 Shows active links
 Easy to Debug
DEUS EX MANKIND DIVIDED 72
Heart and Soul v
Gameplay Objects
3 Geometry Types
 Static objects (level geometry)
 Physics objects (rigid bodies)
 Kinematic objects (bones + animation)
All gameplay objects are a mix of geometry and scripting entities.
DEUS EX MANKIND DIVIDED 73
Heart and Soul
Pins
 Input pins receive trigger signals
 Output pins send trigger signals
 Property pins expose values
 Accessor pins fetch values
 Event scripting: left / right
 Data scripting: top / bottom
DEUS EX MANKIND DIVIDED 74
Heart and Soul v
Signal Types
 Various signal types
 Void, Bool, Int, Float, Vector, String, Color, etc.
 Types are color coded
 Makes compatibility explicit
Custom Signals
 Dawn Engine allows user created signals
 Expose signals from child to parent
DEUS EX MANKIND DIVIDED 75
Heart and Soul
Composite Objects
DEUS EX MANKIND DIVIDED
Heart and Soul
Images with Soul
 Ambitious artistic direction
 Push graphic quality
 Push image tangibility
 Volumetric lighting + air density
 Apply photography to videogames
 Tell stories with color
v
DEUS EX MANKIND DIVIDED
Heart and Soul
Photographic Postfilters
 Depth of Field with Bokeh
 Motion Blur
 Volumetric Lighting
 Parallax Occlusion Mapping
 Screen Space Reflection
 Glare + Glow
 Lens Effects (Flare, Dust, Scratch)
v
DEUS EX MANKIND DIVIDED
Heart and Soul
Color Language
 Color = emotional cues
 Meanings vary by culture
 Devised own color language based on:
 Factions
 Metaphors
 Story hints
 Subtle but noticeable
 Coherent + Consistent
DEUS EX MANKIND DIVIDED
Heart and Soul
Colorscripts
 Colors should tell a story
 Use color language as base coat
 Fluctuate saturation and contrast
 Affects brain stimulation and stress
 Climatic scenes more saturated and contrasted
 Colorscript is a map of these fluctuations
“Colorscripts provide a roadmap for shifts in color, lighting, emotion and
mood throughout a film.” – Amid Amidi, The Art of Pixar
DEUS EX MANKIND DIVIDED
Heart and Soul
Color Correction Tool
 Adjust multiple aspects of color
 3 color zones based on luma curve
 2 depth zones: near and far
Tool split into 3 parts:
 Luma
 Color 1
 Color 2
109
DEUS EX MANKIND DIVIDED
Heart and Soul
Two luma curves define the color zone distribution:
Shadows, Midtones and Highlights
Luma
110
DEUS EX MANKIND DIVIDED
Heart and Soul
Parameters for each color zone defined by luma curves
Adjusts Hue, Saturation, Contrast and Global Tint
Color 1
111
DEUS EX MANKIND DIVIDED
Heart and Soul
More color zone parameters. These can affect RGB individually
Adjusts Level, Brightness, Contrast and Color Temperature
Color 2
112
DEUS EX MANKIND DIVIDED
Heart and Soul
Foreground & Background
 Each can be affected separately
 Full color correction
 Adjustable for photography needs
 Distances set by lighting artists
v

Weitere ähnliche Inhalte

Was ist angesagt?

Stable SSAO in Battlefield 3 with Selective Temporal Filtering
Stable SSAO in Battlefield 3 with Selective Temporal FilteringStable SSAO in Battlefield 3 with Selective Temporal Filtering
Stable SSAO in Battlefield 3 with Selective Temporal FilteringElectronic Arts / DICE
 
Calibrating Lighting and Materials in Far Cry 3
Calibrating Lighting and Materials in Far Cry 3Calibrating Lighting and Materials in Far Cry 3
Calibrating Lighting and Materials in Far Cry 3stevemcauley
 
Bindless Deferred Decals in The Surge 2
Bindless Deferred Decals in The Surge 2Bindless Deferred Decals in The Surge 2
Bindless Deferred Decals in The Surge 2Philip Hammer
 
Physically Based Sky, Atmosphere and Cloud Rendering in Frostbite
Physically Based Sky, Atmosphere and Cloud Rendering in FrostbitePhysically Based Sky, Atmosphere and Cloud Rendering in Frostbite
Physically Based Sky, Atmosphere and Cloud Rendering in FrostbiteElectronic Arts / DICE
 
Lighting of Killzone: Shadow Fall
Lighting of Killzone: Shadow FallLighting of Killzone: Shadow Fall
Lighting of Killzone: Shadow FallGuerrilla
 
The Intersection of Game Engines & GPUs: Current & Future (Graphics Hardware ...
The Intersection of Game Engines & GPUs: Current & Future (Graphics Hardware ...The Intersection of Game Engines & GPUs: Current & Future (Graphics Hardware ...
The Intersection of Game Engines & GPUs: Current & Future (Graphics Hardware ...Johan Andersson
 
Colin Barre-Brisebois - GDC 2011 - Approximating Translucency for a Fast, Che...
Colin Barre-Brisebois - GDC 2011 - Approximating Translucency for a Fast, Che...Colin Barre-Brisebois - GDC 2011 - Approximating Translucency for a Fast, Che...
Colin Barre-Brisebois - GDC 2011 - Approximating Translucency for a Fast, Che...Colin Barré-Brisebois
 
Next generation graphics programming on xbox 360
Next generation graphics programming on xbox 360Next generation graphics programming on xbox 360
Next generation graphics programming on xbox 360VIKAS SINGH BHADOURIA
 
Physically Based and Unified Volumetric Rendering in Frostbite
Physically Based and Unified Volumetric Rendering in FrostbitePhysically Based and Unified Volumetric Rendering in Frostbite
Physically Based and Unified Volumetric Rendering in FrostbiteElectronic Arts / DICE
 
The Rendering Technology of Killzone 2
The Rendering Technology of Killzone 2The Rendering Technology of Killzone 2
The Rendering Technology of Killzone 2Guerrilla
 
An introduction to Realistic Ocean Rendering through FFT - Fabio Suriano - Co...
An introduction to Realistic Ocean Rendering through FFT - Fabio Suriano - Co...An introduction to Realistic Ocean Rendering through FFT - Fabio Suriano - Co...
An introduction to Realistic Ocean Rendering through FFT - Fabio Suriano - Co...Codemotion
 
Rendering Technologies from Crysis 3 (GDC 2013)
Rendering Technologies from Crysis 3 (GDC 2013)Rendering Technologies from Crysis 3 (GDC 2013)
Rendering Technologies from Crysis 3 (GDC 2013)Tiago Sousa
 
Five Rendering Ideas from Battlefield 3 & Need For Speed: The Run
Five Rendering Ideas from Battlefield 3 & Need For Speed: The RunFive Rendering Ideas from Battlefield 3 & Need For Speed: The Run
Five Rendering Ideas from Battlefield 3 & Need For Speed: The RunElectronic Arts / DICE
 
Graphics Gems from CryENGINE 3 (Siggraph 2013)
Graphics Gems from CryENGINE 3 (Siggraph 2013)Graphics Gems from CryENGINE 3 (Siggraph 2013)
Graphics Gems from CryENGINE 3 (Siggraph 2013)Tiago Sousa
 
Siggraph2016 - The Devil is in the Details: idTech 666
Siggraph2016 - The Devil is in the Details: idTech 666Siggraph2016 - The Devil is in the Details: idTech 666
Siggraph2016 - The Devil is in the Details: idTech 666Tiago Sousa
 

Was ist angesagt? (20)

Shiny PC Graphics in Battlefield 3
Shiny PC Graphics in Battlefield 3Shiny PC Graphics in Battlefield 3
Shiny PC Graphics in Battlefield 3
 
Stable SSAO in Battlefield 3 with Selective Temporal Filtering
Stable SSAO in Battlefield 3 with Selective Temporal FilteringStable SSAO in Battlefield 3 with Selective Temporal Filtering
Stable SSAO in Battlefield 3 with Selective Temporal Filtering
 
Calibrating Lighting and Materials in Far Cry 3
Calibrating Lighting and Materials in Far Cry 3Calibrating Lighting and Materials in Far Cry 3
Calibrating Lighting and Materials in Far Cry 3
 
Bindless Deferred Decals in The Surge 2
Bindless Deferred Decals in The Surge 2Bindless Deferred Decals in The Surge 2
Bindless Deferred Decals in The Surge 2
 
Physically Based Sky, Atmosphere and Cloud Rendering in Frostbite
Physically Based Sky, Atmosphere and Cloud Rendering in FrostbitePhysically Based Sky, Atmosphere and Cloud Rendering in Frostbite
Physically Based Sky, Atmosphere and Cloud Rendering in Frostbite
 
Lighting of Killzone: Shadow Fall
Lighting of Killzone: Shadow FallLighting of Killzone: Shadow Fall
Lighting of Killzone: Shadow Fall
 
Stochastic Screen-Space Reflections
Stochastic Screen-Space ReflectionsStochastic Screen-Space Reflections
Stochastic Screen-Space Reflections
 
Lighting you up in Battlefield 3
Lighting you up in Battlefield 3Lighting you up in Battlefield 3
Lighting you up in Battlefield 3
 
The Intersection of Game Engines & GPUs: Current & Future (Graphics Hardware ...
The Intersection of Game Engines & GPUs: Current & Future (Graphics Hardware ...The Intersection of Game Engines & GPUs: Current & Future (Graphics Hardware ...
The Intersection of Game Engines & GPUs: Current & Future (Graphics Hardware ...
 
Colin Barre-Brisebois - GDC 2011 - Approximating Translucency for a Fast, Che...
Colin Barre-Brisebois - GDC 2011 - Approximating Translucency for a Fast, Che...Colin Barre-Brisebois - GDC 2011 - Approximating Translucency for a Fast, Che...
Colin Barre-Brisebois - GDC 2011 - Approximating Translucency for a Fast, Che...
 
Next generation graphics programming on xbox 360
Next generation graphics programming on xbox 360Next generation graphics programming on xbox 360
Next generation graphics programming on xbox 360
 
Physically Based and Unified Volumetric Rendering in Frostbite
Physically Based and Unified Volumetric Rendering in FrostbitePhysically Based and Unified Volumetric Rendering in Frostbite
Physically Based and Unified Volumetric Rendering in Frostbite
 
The Rendering Technology of Killzone 2
The Rendering Technology of Killzone 2The Rendering Technology of Killzone 2
The Rendering Technology of Killzone 2
 
An introduction to Realistic Ocean Rendering through FFT - Fabio Suriano - Co...
An introduction to Realistic Ocean Rendering through FFT - Fabio Suriano - Co...An introduction to Realistic Ocean Rendering through FFT - Fabio Suriano - Co...
An introduction to Realistic Ocean Rendering through FFT - Fabio Suriano - Co...
 
Rendering Technologies from Crysis 3 (GDC 2013)
Rendering Technologies from Crysis 3 (GDC 2013)Rendering Technologies from Crysis 3 (GDC 2013)
Rendering Technologies from Crysis 3 (GDC 2013)
 
Five Rendering Ideas from Battlefield 3 & Need For Speed: The Run
Five Rendering Ideas from Battlefield 3 & Need For Speed: The RunFive Rendering Ideas from Battlefield 3 & Need For Speed: The Run
Five Rendering Ideas from Battlefield 3 & Need For Speed: The Run
 
DirectX 11 Rendering in Battlefield 3
DirectX 11 Rendering in Battlefield 3DirectX 11 Rendering in Battlefield 3
DirectX 11 Rendering in Battlefield 3
 
Graphics Gems from CryENGINE 3 (Siggraph 2013)
Graphics Gems from CryENGINE 3 (Siggraph 2013)Graphics Gems from CryENGINE 3 (Siggraph 2013)
Graphics Gems from CryENGINE 3 (Siggraph 2013)
 
A Real-time Radiosity Architecture
A Real-time Radiosity ArchitectureA Real-time Radiosity Architecture
A Real-time Radiosity Architecture
 
Siggraph2016 - The Devil is in the Details: idTech 666
Siggraph2016 - The Devil is in the Details: idTech 666Siggraph2016 - The Devil is in the Details: idTech 666
Siggraph2016 - The Devil is in the Details: idTech 666
 

Ähnlich wie Rendering Techniques in Deus Ex: Mankind Divided

Minko stage3d workshop_20130525
Minko stage3d workshop_20130525Minko stage3d workshop_20130525
Minko stage3d workshop_20130525Minko3D
 
Benoit fouletier guillaume martin unity day- modern 2 d techniques-gce2014
Benoit fouletier guillaume martin   unity day- modern 2 d techniques-gce2014Benoit fouletier guillaume martin   unity day- modern 2 d techniques-gce2014
Benoit fouletier guillaume martin unity day- modern 2 d techniques-gce2014Mary Chan
 
Dynamic Wounds on Animated Characters in UE4
Dynamic Wounds on Animated Characters in UE4Dynamic Wounds on Animated Characters in UE4
Dynamic Wounds on Animated Characters in UE4Michał Kłoś
 
Presentationshowreel
PresentationshowreelPresentationshowreel
PresentationshowreelAbhinav Sood
 
Star Ocean 4 - Flexible Shader Managment and Post-processing
Star Ocean 4 - Flexible Shader Managment and Post-processingStar Ocean 4 - Flexible Shader Managment and Post-processing
Star Ocean 4 - Flexible Shader Managment and Post-processingumsl snfrzb
 
MetaZtron holographic Z depth factor
MetaZtron holographic Z depth factorMetaZtron holographic Z depth factor
MetaZtron holographic Z depth factorDiane Troyer
 
Hive Holographic Immersive Virutal Laser Projector Troyer
Hive Holographic Immersive Virutal Laser Projector TroyerHive Holographic Immersive Virutal Laser Projector Troyer
Hive Holographic Immersive Virutal Laser Projector TroyerDiane Troyer
 
Cg shaders with Unity3D
Cg shaders with Unity3DCg shaders with Unity3D
Cg shaders with Unity3DMichael Ivanov
 
Incarnation - Turning Real World Objects into Perfume World
Incarnation - Turning Real World Objects into Perfume WorldIncarnation - Turning Real World Objects into Perfume World
Incarnation - Turning Real World Objects into Perfume WorldYung-Luen Lan
 
Shiny Pixels and Beyond: Real-Time Raytracing at SEED
Shiny Pixels and Beyond: Real-Time Raytracing at SEEDShiny Pixels and Beyond: Real-Time Raytracing at SEED
Shiny Pixels and Beyond: Real-Time Raytracing at SEEDElectronic Arts / DICE
 
Penner pre-integrated skin rendering (siggraph 2011 advances in real-time r...
Penner   pre-integrated skin rendering (siggraph 2011 advances in real-time r...Penner   pre-integrated skin rendering (siggraph 2011 advances in real-time r...
Penner pre-integrated skin rendering (siggraph 2011 advances in real-time r...JP Lee
 
The Technology Behind the DirectX 11 Unreal Engine"Samaritan" Demo
The Technology Behind the DirectX 11 Unreal Engine"Samaritan" DemoThe Technology Behind the DirectX 11 Unreal Engine"Samaritan" Demo
The Technology Behind the DirectX 11 Unreal Engine"Samaritan" Demodrandom
 
Epic_GDC2011_Samaritan
Epic_GDC2011_SamaritanEpic_GDC2011_Samaritan
Epic_GDC2011_SamaritanMinGeun Park
 
Dominic Eskofier (Nvidia) Every Millisecond Counts: How to Render Faster for ...
Dominic Eskofier (Nvidia) Every Millisecond Counts: How to Render Faster for ...Dominic Eskofier (Nvidia) Every Millisecond Counts: How to Render Faster for ...
Dominic Eskofier (Nvidia) Every Millisecond Counts: How to Render Faster for ...AugmentedWorldExpo
 
The Technology behind Shadow Warrior, ZTG 2014
The Technology behind Shadow Warrior, ZTG 2014The Technology behind Shadow Warrior, ZTG 2014
The Technology behind Shadow Warrior, ZTG 2014Jarosław Pleskot
 
3D Multi Object GAN
3D Multi Object GAN3D Multi Object GAN
3D Multi Object GANYu Nishimura
 

Ähnlich wie Rendering Techniques in Deus Ex: Mankind Divided (20)

Minko stage3d workshop_20130525
Minko stage3d workshop_20130525Minko stage3d workshop_20130525
Minko stage3d workshop_20130525
 
Benoit fouletier guillaume martin unity day- modern 2 d techniques-gce2014
Benoit fouletier guillaume martin   unity day- modern 2 d techniques-gce2014Benoit fouletier guillaume martin   unity day- modern 2 d techniques-gce2014
Benoit fouletier guillaume martin unity day- modern 2 d techniques-gce2014
 
Dynamic Wounds on Animated Characters in UE4
Dynamic Wounds on Animated Characters in UE4Dynamic Wounds on Animated Characters in UE4
Dynamic Wounds on Animated Characters in UE4
 
Showreel
ShowreelShowreel
Showreel
 
Presentationshowreel
PresentationshowreelPresentationshowreel
Presentationshowreel
 
Star Ocean 4 - Flexible Shader Managment and Post-processing
Star Ocean 4 - Flexible Shader Managment and Post-processingStar Ocean 4 - Flexible Shader Managment and Post-processing
Star Ocean 4 - Flexible Shader Managment and Post-processing
 
MetaZtron holographic Z depth factor
MetaZtron holographic Z depth factorMetaZtron holographic Z depth factor
MetaZtron holographic Z depth factor
 
esapro_2_manual_en.pdf
esapro_2_manual_en.pdfesapro_2_manual_en.pdf
esapro_2_manual_en.pdf
 
Hive Holographic Immersive Virutal Laser Projector Troyer
Hive Holographic Immersive Virutal Laser Projector TroyerHive Holographic Immersive Virutal Laser Projector Troyer
Hive Holographic Immersive Virutal Laser Projector Troyer
 
Cg shaders with Unity3D
Cg shaders with Unity3DCg shaders with Unity3D
Cg shaders with Unity3D
 
Incarnation - Turning Real World Objects into Perfume World
Incarnation - Turning Real World Objects into Perfume WorldIncarnation - Turning Real World Objects into Perfume World
Incarnation - Turning Real World Objects into Perfume World
 
Shiny Pixels and Beyond: Real-Time Raytracing at SEED
Shiny Pixels and Beyond: Real-Time Raytracing at SEEDShiny Pixels and Beyond: Real-Time Raytracing at SEED
Shiny Pixels and Beyond: Real-Time Raytracing at SEED
 
Penner pre-integrated skin rendering (siggraph 2011 advances in real-time r...
Penner   pre-integrated skin rendering (siggraph 2011 advances in real-time r...Penner   pre-integrated skin rendering (siggraph 2011 advances in real-time r...
Penner pre-integrated skin rendering (siggraph 2011 advances in real-time r...
 
The Technology Behind the DirectX 11 Unreal Engine"Samaritan" Demo
The Technology Behind the DirectX 11 Unreal Engine"Samaritan" DemoThe Technology Behind the DirectX 11 Unreal Engine"Samaritan" Demo
The Technology Behind the DirectX 11 Unreal Engine"Samaritan" Demo
 
Epic_GDC2011_Samaritan
Epic_GDC2011_SamaritanEpic_GDC2011_Samaritan
Epic_GDC2011_Samaritan
 
Dominic Eskofier (Nvidia) Every Millisecond Counts: How to Render Faster for ...
Dominic Eskofier (Nvidia) Every Millisecond Counts: How to Render Faster for ...Dominic Eskofier (Nvidia) Every Millisecond Counts: How to Render Faster for ...
Dominic Eskofier (Nvidia) Every Millisecond Counts: How to Render Faster for ...
 
The Technology behind Shadow Warrior, ZTG 2014
The Technology behind Shadow Warrior, ZTG 2014The Technology behind Shadow Warrior, ZTG 2014
The Technology behind Shadow Warrior, ZTG 2014
 
How video codec work
How video codec work How video codec work
How video codec work
 
Svr Raskar
Svr RaskarSvr Raskar
Svr Raskar
 
3D Multi Object GAN
3D Multi Object GAN3D Multi Object GAN
3D Multi Object GAN
 

Kürzlich hochgeladen

Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdfLearn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdfkalichargn70th171
 
TECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service providerTECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service providermohitmore19
 
Diamond Application Development Crafting Solutions with Precision
Diamond Application Development Crafting Solutions with PrecisionDiamond Application Development Crafting Solutions with Precision
Diamond Application Development Crafting Solutions with PrecisionSolGuruz
 
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...kellynguyen01
 
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...ICS
 
CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online ☂️
CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online  ☂️CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online  ☂️
CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online ☂️anilsa9823
 
Right Money Management App For Your Financial Goals
Right Money Management App For Your Financial GoalsRight Money Management App For Your Financial Goals
Right Money Management App For Your Financial GoalsJhone kinadey
 
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...MyIntelliSource, Inc.
 
Hand gesture recognition PROJECT PPT.pptx
Hand gesture recognition PROJECT PPT.pptxHand gesture recognition PROJECT PPT.pptx
Hand gesture recognition PROJECT PPT.pptxbodapatigopi8531
 
How To Troubleshoot Collaboration Apps for the Modern Connected Worker
How To Troubleshoot Collaboration Apps for the Modern Connected WorkerHow To Troubleshoot Collaboration Apps for the Modern Connected Worker
How To Troubleshoot Collaboration Apps for the Modern Connected WorkerThousandEyes
 
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️Delhi Call girls
 
Unlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language ModelsUnlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language Modelsaagamshah0812
 
Software Quality Assurance Interview Questions
Software Quality Assurance Interview QuestionsSoftware Quality Assurance Interview Questions
Software Quality Assurance Interview QuestionsArshad QA
 
How To Use Server-Side Rendering with Nuxt.js
How To Use Server-Side Rendering with Nuxt.jsHow To Use Server-Side Rendering with Nuxt.js
How To Use Server-Side Rendering with Nuxt.jsAndolasoft Inc
 
HR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.comHR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.comFatema Valibhai
 
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...MyIntelliSource, Inc.
 
CALL ON ➥8923113531 🔝Call Girls Badshah Nagar Lucknow best Female service
CALL ON ➥8923113531 🔝Call Girls Badshah Nagar Lucknow best Female serviceCALL ON ➥8923113531 🔝Call Girls Badshah Nagar Lucknow best Female service
CALL ON ➥8923113531 🔝Call Girls Badshah Nagar Lucknow best Female serviceanilsa9823
 

Kürzlich hochgeladen (20)

Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdfLearn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
 
TECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service providerTECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service provider
 
Diamond Application Development Crafting Solutions with Precision
Diamond Application Development Crafting Solutions with PrecisionDiamond Application Development Crafting Solutions with Precision
Diamond Application Development Crafting Solutions with Precision
 
Microsoft AI Transformation Partner Playbook.pdf
Microsoft AI Transformation Partner Playbook.pdfMicrosoft AI Transformation Partner Playbook.pdf
Microsoft AI Transformation Partner Playbook.pdf
 
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...
 
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
 
CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online ☂️
CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online  ☂️CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online  ☂️
CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online ☂️
 
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICECHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
 
Right Money Management App For Your Financial Goals
Right Money Management App For Your Financial GoalsRight Money Management App For Your Financial Goals
Right Money Management App For Your Financial Goals
 
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
 
Hand gesture recognition PROJECT PPT.pptx
Hand gesture recognition PROJECT PPT.pptxHand gesture recognition PROJECT PPT.pptx
Hand gesture recognition PROJECT PPT.pptx
 
How To Troubleshoot Collaboration Apps for the Modern Connected Worker
How To Troubleshoot Collaboration Apps for the Modern Connected WorkerHow To Troubleshoot Collaboration Apps for the Modern Connected Worker
How To Troubleshoot Collaboration Apps for the Modern Connected Worker
 
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
 
Vip Call Girls Noida ➡️ Delhi ➡️ 9999965857 No Advance 24HRS Live
Vip Call Girls Noida ➡️ Delhi ➡️ 9999965857 No Advance 24HRS LiveVip Call Girls Noida ➡️ Delhi ➡️ 9999965857 No Advance 24HRS Live
Vip Call Girls Noida ➡️ Delhi ➡️ 9999965857 No Advance 24HRS Live
 
Unlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language ModelsUnlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language Models
 
Software Quality Assurance Interview Questions
Software Quality Assurance Interview QuestionsSoftware Quality Assurance Interview Questions
Software Quality Assurance Interview Questions
 
How To Use Server-Side Rendering with Nuxt.js
How To Use Server-Side Rendering with Nuxt.jsHow To Use Server-Side Rendering with Nuxt.js
How To Use Server-Side Rendering with Nuxt.js
 
HR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.comHR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.com
 
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
 
CALL ON ➥8923113531 🔝Call Girls Badshah Nagar Lucknow best Female service
CALL ON ➥8923113531 🔝Call Girls Badshah Nagar Lucknow best Female serviceCALL ON ➥8923113531 🔝Call Girls Badshah Nagar Lucknow best Female service
CALL ON ➥8923113531 🔝Call Girls Badshah Nagar Lucknow best Female service
 

Rendering Techniques in Deus Ex: Mankind Divided

  • 1. DEUS EX MANKIND DIVIDED Labs R&D: The Rendering Techniques of Deus EX: Mankind Divided and Rise of the Tomb Raider SIGGRAPH 2015 www.eidosmontreal.com/www.square-enix-montreal.com
  • 2. DEUS EX MANKIND DIVIDED VFX Effect for Adam Jensen Titan 2 v Nicolas Longhamps Senior Technical Artist at Labs, Eidos Montreal Peter Sikachev 3D Programmer at Labs, Eidos Montreal
  • 3. DEUS EX MANKIND DIVIDED Titan 3 VFX Description  Trademark effect for DXMD  A protective shell covering character  Should look solid but feel “alive”  Should look similar to CG version v
  • 4. DEUS EX MANKIND DIVIDED Titan 4 Visual Features  Triangular surface  Animation  Hit reaction  First-person vignette v
  • 5. DEUS EX MANKIND DIVIDED Titan 5 Tessellation  Hardware tessellation  Dynamic tessellation factor based on distance  Small triangles used for geometry animations and displacement  Tessellation barycentric coordinates used for edge bevel effect v
  • 6. DEUS EX MANKIND DIVIDED www.eidosmontreal.com www.square-enix-montreal.com Titan 6 Geometry Animation  Masks control specific areas  “Living skin”: periodic surface disturbance  Full-body noise on hit  Sequential vertex/normal offset v
  • 7. DEUS EX MANKIND DIVIDED www.eidosmontreal.com www.square-enix-montreal.com Titan 7 Hit Reaction  Weapon hits  Parameters set per ammunition type  Hits found on CPU and passed in CB  Titan mesh animated near hit areas  Underlying character mesh is shown in holes only  (De)construction  Reusing proxy weapon hits  Placed at joints selected by artists v
  • 8. DEUS EX MANKIND DIVIDED www.eidosmontreal.com www.square-enix-montreal.com Titan 8 Texture and Normal Map  Normal bevel (helps smooth edges)  Normal softening  Detail normal/data maps for normal animation  Surface noise map to simulate animated micro detail  Custom back reflections (aka ‘fake specular’) v
  • 9. DEUS EX MANKIND DIVIDED Normal Bevel Off
  • 10. DEUS EX MANKIND DIVIDED Normal Bevel On
  • 11. DEUS EX MANKIND DIVIDED Normal Softening Off
  • 12. DEUS EX MANKIND DIVIDED Normal Softening On
  • 13. DEUS EX MANKIND DIVIDED Detail Normal Map Off
  • 14. DEUS EX MANKIND DIVIDED Detail Normal Map On
  • 15. DEUS EX MANKIND DIVIDED www.eidosmontreal.com www.square-enix-montreal.com Titan 15 First Person Vignette  Post Process effect in same visual style as Titan  Should convey the presence of armor but not obstruct view  Artist created mesh rendered in screen space  Shader supports Titan-like effects :  Sequential normal and vertex position offset animation  Edge bevel  (De)construction  Other shader effects :  Refraction  Chromatic aberration v
  • 16. DEUS EX MANKIND DIVIDED www.eidosmontreal.com www.square-enix-montreal.com Titan 16 v Implementation Details  Not a performance-critical feature (~0.1 ms per character with Titan)  Flat normal using pos gradients  Tessellation was retro-fitted to the engine  Especially painful on PS4  Number of simultaneous hits is limited (32)  Limit displacement based on camera distance and artist mask
  • 17. DEUS EX MANKIND DIVIDED 17 vParallax Occlusion Mapping Peter Sikachev 3D Programmer at Labs, Eidos Montreal
  • 18. DEUS EX MANKIND DIVIDED Parallax Occlusion Mapping 18 Relaxed Cone-Step Tracing Refresher  Introduced in GPU Gems 3 [Policarpo07]  Pre-generate a cone-step map (CSM) acceleration structure  Use CSM instead linear steps  Improve intersection with binary steps v surface
  • 19. DEUS EX MANKIND DIVIDED Parallax Occlusion Mapping 19 Relaxed Cone-Step Tracing Refresher  Introduced in GPU Gems 3 [Policarpo07]  Pre-generate a cone-step map (CSM) acceleration structure  Use CSM instead linear steps  Improve intersection with binary steps view raysurface cone
  • 20. DEUS EX MANKIND DIVIDED Parallax Occlusion Mapping 20 Relaxed Cone-Step Tracing Refresher  Introduced in GPU Gems 3 [Policarpo07]  Pre-generate a cone-step map (CSM) acceleration structure  Use CSM instead linear steps  Improve intersection with binary steps view raysurface cone
  • 21. DEUS EX MANKIND DIVIDED Parallax Occlusion Mapping 21 Blending POM surfaces with puddles  Water should look like it is between reliefs  Use height as a threshold between two materials fMaterialMask *= 1.0f - saturate( (fPOMHeight - u_fPOMThreshold) * u_fPOMMultiplier )
  • 22. DEUS EX MANKIND DIVIDED Visuals Examples All Rights Reserved SquareEnix Eidos Montreal 2015
  • 23. DEUS EX MANKIND DIVIDED www.eidosmontreal.com www.square-enix-montreal.com
  • 24. DEUS EX MANKIND DIVIDED www.eidosmontreal.com www.square-enix-montreal.com Height blend threshold = 1 (no blend)
  • 25. DEUS EX MANKIND DIVIDED www.eidosmontreal.com www.square-enix-montreal.com Height blend threshold = 0 (no blend)
  • 26. DEUS EX MANKIND DIVIDED www.eidosmontreal.com www.square-enix-montreal.com Height blend threshold = 0.4
  • 27. DEUS EX MANKIND DIVIDED www.eidosmontreal.com www.square-enix-montreal.com Height blend threshold = 0.8
  • 28. DEUS EX MANKIND DIVIDED Parallax Occlusion Mapping 28 Depth Center  An artist-inspired idea  Feature from Marmoset Toolbag 2  Allows details to stick out  Used on charactersv EyeDirTangentSpace.xy *= POMRange; EyeDirTangentSpace /= max(EyeDirTangentSpace.z, NUMERIC_EPSILON); float Distance = length(EyeDirTangentSpace.xy); float2 BaseOffset = EyeDirTangentSpace.xy * POMDepthCenter / (Distance + 1.0f); view ray POM surface mesh surface
  • 29. DEUS EX MANKIND DIVIDED Parallax Occlusion Mapping 29 Depth Center  An artist-inspired idea  Feature from Marmoset Toolbag 2  Allows details to stick out  Used on charactersv EyeDirTangentSpace.xy *= POMRange; EyeDirTangentSpace /= max(EyeDirTangentSpace.z, NUMERIC_EPSILON); float Distance = length(EyeDirTangentSpace.xy); float2 BaseOffset = EyeDirTangentSpace.xy * POMDepthCenter / (Distance + 1.0f); view ray POM surface mesh surface
  • 30. DEUS EX MANKIND DIVIDED Visuals Examples All Rights Reserved SquareEnix Eidos Montreal 2015
  • 31. DEUS EX MANKIND DIVIDED Without POM 31
  • 32. DEUS EX MANKIND DIVIDED With POM 32
  • 33. DEUS EX MANKIND DIVIDED Without POM 33
  • 34. DEUS EX MANKIND DIVIDED With POM 34
  • 35. DEUS EX MANKIND DIVIDED Parallax Occlusion Mapping 35 Optimizations and Cost  Reduce number of cone/binary steps based on distance  Texture mip is approximated as there were no POM  Incremental cost: ~1 ms full-screen 1080p up-close at PS4 v
  • 36. DEUS EX MANKIND DIVIDED 36 Pure Hair v Presented by Anton Kai Michels R&D Programmer for Labs at Eidos Montreal Uriel Doyon Technical Director for Labs at Eidos Montreal
  • 37. DEUS EX MANKIND DIVIDED Pure Hair Data Model 37 Asset Types  Textured head  Hair mesh  Hair strands Textured Head v
  • 38. DEUS EX MANKIND DIVIDED Pure Hair Data Model 38 Asset Types  Textured head  Hair mesh  Hair strands Textured Head + Hair Strands vv
  • 39. DEUS EX MANKIND DIVIDED Pure Hair Data Model 39 Asset Types  Textured head  Hair mesh  Hair strands Hair Mesh v
  • 40. DEUS EX MANKIND DIVIDED Pure Hair Data Model 40 Asset Types  Textured head  Hair mesh  Hair strands Hair Strands v
  • 41. DEUS EX MANKIND DIVIDED Pure Hair Data Model 41 Asset Types  Textured head  Hair mesh  Hair strands Hair MeshHair Mesh + Hair Strands v
  • 42. DEUS EX MANKIND DIVIDED Pure Hair Hair Strands 42 Wisp Data  Required at runtime  Exported into Dawn Engine  Keep DCC wisps if available  Else grouping splines manually  Generate master strand per wisp Master strands (one per wisp) vv
  • 43. DEUS EX MANKIND DIVIDED Pure Hair Hair Strands 43 Master to slave skinning  Less strands to simulate  Shape preserving LODs  Retains haircut shape despite simulation Slave strands (many per wisp) vv
  • 44. DEUS EX MANKIND DIVIDED Pure Hair Hair Strands 44 Shape preserving LODs  Reduce strand count while increasing strand width  LOD is applied per wisp, so shape is preserved v LOD 0 LOD 1 LOD 2 LOD 3
  • 45. DEUS EX MANKIND DIVIDED Pure Hair Simulation Variable number of vertices  Between 4 to 32 vertices per strand  Master strands within groups have same vertex count  Slave strands can have any number of vertices  Fixed length enforcing (a la Muller) vv
  • 46. DEUS EX MANKIND DIVIDED Pure Hair Simulation vv World space simulation  Issues on fast moving objects  Calculate and scale root delta position  Apply it to previous frame positions
  • 47. DEUS EX MANKIND DIVIDED Pure Hair Simulation vv Wind  Build a cone from wind direction  Gives each hair slightly different vector  Makes hairs spread nicely  Creates desirable variation between frames
  • 48. DEUS EX MANKIND DIVIDED Pure Hair Simulation 48 vv Wisp Interactions  Slave strands affected by surrounding masters if close enough  Decided on stateless approach  Simplifies LOD handling  View frustum changes  Slaves only affected by closest master strand in reference position
  • 49. DEUS EX MANKIND DIVIDED v Lighting probes  Evaluate lighting over hair bounds  Store directional intensities using cubemaps or spherical harmonics  Reduces lighting cost significantly  Head occlusion approximated by sphere in shader Tangent based lighting  Use tangent based lighting instead of normal  Especially visible in diffuse because strands are billboarded Pure Hair Lighting Model
  • 50. DEUS EX MANKIND DIVIDED 50 Dual specular highlights  Most significant hair lighting feature  Adding tangent noise breaks "audio tape" look. Fresnel factor  More important than back scattering.  Extra term in the lighting equation. v Pure Hair Lighting Model 1 specular highlight Dual specular highlights Dual specular highlights + tangent noise
  • 51. DEUS EX MANKIND DIVIDED Pure Hair Translucency 51 Per Pixel Linked List (PPLL)  Node buffer = 200Mb in 1080p  With 12 bytes per node  Koverdraw = 8  More overdraw makes resolve more expensive vv Fill PPLL Resolve Color Resolve Depth
  • 52. DEUS EX MANKIND DIVIDED Pure Hair Translucency 52 PPLL with Hair Depth Pre-Pass  Optimization for PPLL, greatly benefits LODs  Allows smaller Koverdraw (~ 3) for the same quality  Artists must limit translucency to strand tips and mesh edges  ~100Mb total vv Fill PPLL Resolve Color Resolve Depth Hair Depth Pre-pass
  • 53. DEUS EX MANKIND DIVIDED 53 Depth Peeling  Use atomics to compute closest depths 0 and 1  Fill nodes only if they are entry 0 or 1  Similar performance to PPLL with depth pre-pass  Half memory cost with no overflow  ~50Mb total Resolve Depth (D0 or D1) Fill Nodes Resolve Color DepthPeeling,AlphaAcc Pure Hair Translucency
  • 54. DEUS EX MANKIND DIVIDED 54 Depth Peeling vs PPLL with Depth Pre-Pass  Performance comparison on a Radeon HD 7970, using Adam Jensen, cinematic LOD Fullscreen Near Far* PPLL & Depth Pre-pass 1.774 1.004 0.852 Resolve PPLL 2.059 0.422 0.146 Depth Peeling 1.452 0.892 0.833 Resolve DP 1.907 0.338 0.098 Note: Depth Peeling is faster at close range in part because the PPLL depth pre-pass does not have early depth, and also because data access have better locality. Still this is very hardware specific. Pure Hair Translucency
  • 55. DEUS EX MANKIND DIVIDED Presented by Anton Kai Michels R&D Programmer for Labs at Eidos Montreal Motion Blur 55 v Samuel Delmont Senior 3D Programmer for Labs at Eidos Montreal
  • 56. DEUS EX MANKIND DIVIDED Motion Blur 56  Real cameras produce motion blur by accumulating exposure of moving objects while shutter is open  Mimicking this in video games adds realism and a cinematic look  Helps reduce the perception of frame rate v
  • 57. DEUS EX MANKIND DIVIDED Motion Blur Inspiration  Crysis, [Sousa08]  Iterative sampling approach : multiple blur passes  [McGuire13]  Tile neighborhood max velocity removes hard edges v
  • 58. DEUS EX MANKIND DIVIDED Motion Blur v Overview  Motion Blur done in 2 steps:  Velocity Buffer Generation Velocity buffer is RG_FLOAT16, contains motion vectors in screen space coordinates (delta UV of a pixel’s previous position and current position)  Blur Post process, uses velocity buffer to compute blur direction and samples offsets.  Velocity buffer is full resolution: used for temporal reprojection
  • 59. DEUS EX MANKIND DIVIDED Motion Blur v Velocity Buffer Generation  Dynamic objects  Velocity caused by camera movement + object movement + object skinned deformation  Applies to opaque dynamic/skinned primitives  Static objects  Velocity caused by camera movement only  Applies to opaque static primitives
  • 60. DEUS EX MANKIND DIVIDED Motion Blur 60 v v Dynamic Object Velocity Pass  Render dynamic objects using:  Previous world matrix  Previous skinning matrix if applicable  Any previous vertex deformation  Write in stencil buffer to reduce static object velocity pass overhead Velocity buffer RG_Float16 visualization
  • 61. DEUS EX MANKIND DIVIDED Motion Blur 61 v Static Object Velocity Pass  Screen space pass, skip dynamic object pixels from previous pass using stencil buffer  Calculate pixel’s last frame screen position using depth buffer and previous frame’s view-projection matrix
  • 62. DEUS EX MANKIND DIVIDED Motion Blur 62 Blur  Half or full resolution  Artist velocity exponent, smoothens velocity curve and diminishes motion blur on low velocity targets  To deal with hard edge artifacts, use tile max velocity  Compute max in 20x20 pixel tiles  Compute max in 3x3 tile neighborhood
  • 63. DEUS EX MANKIND DIVIDED Motion Blur 63 Blur  Blur done in two passes  Low Frequency: blur 4 samples along tile max velocity Tile neighborhood max velocity Base Samples
  • 64. DEUS EX MANKIND DIVIDED Motion Blur 64 Blur  Blur done in two passes  Low Frequency: blur 4 samples along tile max velocity  High Frequency: blur between samples from first pass Tile neighborhood max velocity Base Samples
  • 65. DEUS EX MANKIND DIVIDED Motion Blur 65 Blur  1st Pass blur weighted with pixel velocity  2nd Pass can’t use original pixel velocity  1st Pass outputs a comparison value to alpha channel  2nd Pass reads these values and uses them for weighting First pass velocity comparison average First pass blur 4 samples Second pass blur 4 samples
  • 66. DEUS EX MANKIND DIVIDED Motion Blur 66 Blur Recap  Separate iterative passes give high quality at lower cost.  Total of 8 samples for virtually 16 samples.  Tile max deals with hard edge artifact. Hard edge artifact without Tile neighbor max No hard edge with Tile neighbor max
  • 67. DEUS EX MANKIND DIVIDED Motion Blur 67 Performance  0.8ms on PS4, includes:  Color buffer downsample  Velocity buffer downsample  Tile max and tile neighborhood max passes  Both separate blur passes  Bilateral upsampling v
  • 68. DEUS EX MANKIND DIVIDED 68 Heart and Soul v Presented by Anton Kai Michels R&D Programmer for Labs at Eidos Montreal Dominique Demers Director of Photography at Eidos Montreal Philippe Desrosiers Lead Interactive Objects at Eidos Montreal
  • 69. DEUS EX MANKIND DIVIDED 69 Heart and Soul v Heart of the machine  Deus Ex very interconnected  Living, breathing world  Applies to environments  Interaction increases immersion
  • 70. DEUS EX MANKIND DIVIDED 70 Heart and Soul v Creating Interaction  Dawn Engine  Artist & game designer created behaviors  Modular System  Quick Iteration  Fast Prototyping  Coherent and standardized
  • 71. DEUS EX MANKIND DIVIDED 71 Heart and Soul Graph View  Scripting UI  Node based  Display and edit everything  Lego block approach  Connections visualized as lines  Shows active links  Easy to Debug
  • 72. DEUS EX MANKIND DIVIDED 72 Heart and Soul v Gameplay Objects 3 Geometry Types  Static objects (level geometry)  Physics objects (rigid bodies)  Kinematic objects (bones + animation) All gameplay objects are a mix of geometry and scripting entities.
  • 73. DEUS EX MANKIND DIVIDED 73 Heart and Soul Pins  Input pins receive trigger signals  Output pins send trigger signals  Property pins expose values  Accessor pins fetch values  Event scripting: left / right  Data scripting: top / bottom
  • 74. DEUS EX MANKIND DIVIDED 74 Heart and Soul v Signal Types  Various signal types  Void, Bool, Int, Float, Vector, String, Color, etc.  Types are color coded  Makes compatibility explicit Custom Signals  Dawn Engine allows user created signals  Expose signals from child to parent
  • 75. DEUS EX MANKIND DIVIDED 75 Heart and Soul Composite Objects
  • 76. DEUS EX MANKIND DIVIDED Heart and Soul Images with Soul  Ambitious artistic direction  Push graphic quality  Push image tangibility  Volumetric lighting + air density  Apply photography to videogames  Tell stories with color v
  • 77. DEUS EX MANKIND DIVIDED Heart and Soul Photographic Postfilters  Depth of Field with Bokeh  Motion Blur  Volumetric Lighting  Parallax Occlusion Mapping  Screen Space Reflection  Glare + Glow  Lens Effects (Flare, Dust, Scratch) v
  • 78. DEUS EX MANKIND DIVIDED Heart and Soul Color Language  Color = emotional cues  Meanings vary by culture  Devised own color language based on:  Factions  Metaphors  Story hints  Subtle but noticeable  Coherent + Consistent
  • 79. DEUS EX MANKIND DIVIDED Heart and Soul Colorscripts  Colors should tell a story  Use color language as base coat  Fluctuate saturation and contrast  Affects brain stimulation and stress  Climatic scenes more saturated and contrasted  Colorscript is a map of these fluctuations “Colorscripts provide a roadmap for shifts in color, lighting, emotion and mood throughout a film.” – Amid Amidi, The Art of Pixar
  • 80. DEUS EX MANKIND DIVIDED Heart and Soul Color Correction Tool  Adjust multiple aspects of color  3 color zones based on luma curve  2 depth zones: near and far Tool split into 3 parts:  Luma  Color 1  Color 2 109
  • 81. DEUS EX MANKIND DIVIDED Heart and Soul Two luma curves define the color zone distribution: Shadows, Midtones and Highlights Luma 110
  • 82. DEUS EX MANKIND DIVIDED Heart and Soul Parameters for each color zone defined by luma curves Adjusts Hue, Saturation, Contrast and Global Tint Color 1 111
  • 83. DEUS EX MANKIND DIVIDED Heart and Soul More color zone parameters. These can affect RGB individually Adjusts Level, Brightness, Contrast and Color Temperature Color 2 112
  • 84. DEUS EX MANKIND DIVIDED Heart and Soul Foreground & Background  Each can be affected separately  Full color correction  Adjustable for photography needs  Distances set by lighting artists v

Hinweis der Redaktion

  1. Good day ladies and gentlemen,   Today we will be presenting a collection of features born of the partnership between Labs, Eidos Montreal and Crystal Dynamics. Labs is a team of graphics programmers and technical artists dedicated to research and development based in Montreal, Canada. This dedication, along with close collaboration with production teams, has led to numerous technological advancements in Deus Ex: Mankind Divided and Rise of the Tomb Raider, two of gaming’s biggest upcoming titles. Our goal with this talk is to shed light on some of these technologies as well as elaborate on some of the production techniques used to achieve the two very diverse artistic visions of both titles.
  2. A more technical art topic
  3. We had already implemented this technique for another project before, and DXMD… well, they never asked for this