Jump to content

Advanced Tessellation in Vulkan


Josh

6,130 views

 Share

Previously I talked about the technical details of hardware tessellation and what it took to make it truly useful. In this article I will talk about some of the implications of this feature and the more advanced ramifications of baking tessellation into Turbo Game Engine as a first-class feature in the 

Although hardware tessellation has been around for a few years, we don't see it used in games that often. There are two big problems that need to be overcome.

  • We need a way to prevent cracks from appearing along edges.
  • We need to display a consistent density of triangles on the screen. Too many polygons is a big problem.

I think these issues are the reason you don't really see much use of tessellation in games, even today. However, I think my research this week has created new technology that will allow us to make use of tessellation as an every-day feature in our new Vulkan renderer.

Per-Vertex Displacement Scale

Because tessellation displaces vertices, any discrepancy in the distance or direction of the displacement, or any difference in the way neighboring polygons are subdivided, will result in cracks appearing in the mesh.

cracks.thumb.jpg.45cedeb182d48ec64eddf9db1ea21cac.jpg

To prevent unwanted cracks in mesh geometry I added a per-vertex displacement scale value. I packed this value into the w component of the vertex position, which was not being used. When the displacement strength is set to zero along the edges the cracks disappear:

hard.thumb.jpg.da182a49efcab64996b6b90f7242c17d.jpg

Segmented Primitives

With the ability to control displacement on a per-vertex level, I set about implementing more advanced model primitives. The basic idea is to split up faces so that the edge vertices can have their displacement scale set to zero to eliminate cracks. I started with a segmented plane. This is a patch of triangles with a user-defined size and resolution. The outer-most vertices have a displacement value of 0 and the inner vertices have a displacement of 1. When tessellation is applied to the plane the effect fades out as it reaches the edges of the primitive:

plane.thumb.jpg.8f12c29937e9612792a5db3ae709ae29.jpg

I then used this formula to create a more advanced box primitive. Along the seam where the edges of each face meet, the displacement smoothly fades out to prevent cracks from appearing.

box.thumb.jpg.6de7d888396b2607b043ed74afd6f479.jpg

The same idea was applied to make segmented cylinders and cones, with displacement disabled along the seams.

cyl.thumb.jpg.d23e755f8303cec529212c7b48fee936.jpg

cone.thumb.jpg.9a8d39bc8656b679520c6dbd67720000.jpg

Finally, a new QuadSphere primitive was created using the box formula, and then normalizing each vertex position. This warps the vertices into a round shape, creating a sphere without the texture warping that spherical mapping creates.

sphere.thumb.jpg.736f0a66cb3d17942e1ea6c3ebc9d484.jpg

It's amazing how tessellation and displacement can make these simple shapes look amazing. Here is the full list of available commands:

shared_ptr<Model> CreateBox(shared_ptr<World> world, const float width = 1.0);
shared_ptr<Model> CreateBox(shared_ptr<World> world, const float width, const float height, const float depth, const int xsegs = 1, const int ysegs = 1);
shared_ptr<Model> CreateSphere(shared_ptr<World> world, const float radius = 0.5, const int segments = 16);
shared_ptr<Model> CreateCone(shared_ptr<World> world, const float radius = 0.5, const float height = 1.0, const int segments = 16, const int heightsegs = 1, const int capsegs = 1);
shared_ptr<Model> CreateCylinder(shared_ptr<World> world, const float radius = 0.5, const float height=1.0, const int sides = 16, const int heightsegs = 1, const int capsegs = 1);
shared_ptr<Model> CreatePlane(shared_ptr<World> world, cnst float width=1, const float height=1, const int xsegs = 1, const int ysegs = 1);
shared_ptr<Model> CreateQuadSphere(shared_ptr<World> world, const float radius = 0.5, const int segments = 8);

Edge Normals

I experimented a bit with edges and got some interesting results. If you round the corner by setting the vertex normal to point diagonally, a rounded edge appears.

normalized.thumb.jpg.542025f2cb8de4d8373af54f15d6813c.jpg

If you extend the displacement scale beyond 1.0 you can get a harder extended edge.

extended.thumb.jpg.47f919091543cfb880c463f27b0a2aae.jpg

This is something I will experiment with more. I think CSG brush smooth groups could be used to make some really nice level geometry.

Screen-space Tessellation LOD

I created an LOD calculation formula that attempts to segment polygons into a target size in screen space. This provides a more uniform distribution of tessellated polygons, regardless of the original geometry. Below are two cylinders created with different segmentation settings, with tessellation disabled:

original.png.2fe38efdf9d739a19d9d1dd4251bbe55.png

And now here are the same meshes with tessellation applied. Although the less-segmented cylinder has more stretched triangles, they both are made up of triangles about the same size.

tessellated.png.000ac5e6bcbf9aa0948f5022ef2afb7b.png

Because the calculation works with screen-space coordinates, objects will automatically adjust resolution with distance. Here are two identical cylinders at different distances.

polys.png.e6d5eba117f4152d4686b5a8bc1979c4.png

You can see they have roughly the same distribution of polygons, which is what we want. The same amount of detail will be used to show off displaced edges at any distance.

polys2.png.5c8ff67387f6d9b1ec783dd07c0fe5ee.png

We can even set a threshold for the minimum vertex displacement in screen space and use that to eliminate tessellation inside an object and only display extra triangles along the edges.

Image7.png.451391de0bdd8f26ecde4ee46c937482.png

This allows you to simply set a target polygon size in screen space without adjusting any per-mesh properties. This method could have prevented the problems Crysis 2 had with polygon density. This also solves the problem that prevented me from using tessellation for terrain. The per-mesh tessellation settings I worked on a couple days ago will be removed since it is not needed.

Parallax Mapping Fallback

Finally, I added a simple parallax mapping fallback that gets used when tessellation is disabled. This makes an inexpensive option for low-end machines that still conveys displacement.

parallax.thumb.jpg.43dd09df178b1ace1bf0e4c4e50a2a4e.jpg

Next I am going to try processing some models that were not designed for tessellation and see if I can use tessellation to add geometric detail to low-poly models without any cracks or artifacts.

  • Like 4
 Share

2 Comments


Recommended Comments

That looks great. Can we do vertex displacement in LE4?

I found this little code segment on the internet. I get it in the editor but not in-game on the brush.

    vec4 dv = textureLod(texture3,ex_texcoords0.xy,0.0);
    float df = 0.015*dv.x + 0.024*dv.y + 0.021*dv.z;
    vec4 newVertexPos = vec4(vec3(dv.xyz* ex_normal*0.01)  * df * 100.0, 0.0) + ex_vertexposition;
    gl_Position = (projectioncameramatrix * newVertexPos);

Link to comment
Guest
Add a comment...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...