Book Image

Direct3D Rendering Cookbook

Book Image

Direct3D Rendering Cookbook

Overview of this book

Table of Contents (19 chapters)
Direct3D Rendering Cookbook
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Further Reading
Index

Optimizing tessellation based on displacement decal (displacement adaptive tessellation)


By modifying our hull shader constant function, we can easily modify the tessellation factor based on whether or not a decal is located within the vicinity of a patch. This is also known as displacement adaptive tessellation.

Getting ready

Within the completed sample available for download in Implementing displacement decals, there is an additional function in Shaders\CommonDecal.hlsl that adds the provided tessellation factor to the appropriate edges and inside tessellation factors depending on whether the decal position and radius would impact the current patch.

void DecalTessellationFactor(float3 p[3], inout float3 edgeTessFactor, inout float insideTessFactor, float tessellation)

How to do it…

To apply displacement adaptive tessellation to the triangle tessellation hull shader perform the following steps:

  1. Update the triangle hull shader constant function HS_TrianglesConstant with the following highlighted...