Tessellation for OpenGL ES 3.1 on Android

Updated on 01-Oct-2015

This is a sample article with source code created by Kyle Weicht, Software Engineer with the Visual Computing Engineering team at Intel Corporation. This article extends exploratory and proof of concept work by Leigh Davies, Software Engineer with the Visual Computing Engineering team at Intel Corporation.

Introduction

This article discusses how to use and implement tessellation in OpenGL ES 3.0 on Android.

What is Tessellation?

Tessellation is a hardware feature that allows a graphics processing unit (GPU) to dynamically subdivide primitives. This feature also allows you to control new vertex placements.

One common use of tessellation is to dynamically scale the level of detail of a terrain based on the distance from the camera. This scaling maintains the visual fidelity of a highly triangulated terrain with great performance.

To support this technique, tessellation shaders were recently added to DirectX 11 and OpenGL 4.0. OpenGL ES does not have tessellation shaders yet, but Intel’s Bay Trail platform now has an extension that would allow for the use of tessellation shaders in OpenGL ES 3.0.

Process for implementing tessellation

The following steps outline how the GPU uses tessellation shaders to dynamically scale terrain. The base terrain consists of a low-resolution mesh and a high resolution height map texture. . 

1. The tessellation control shader

  • calculates the distance from the current triangle to the camera
  • scales the level of tessellation based on the distance calculation.

Note: When the camera is close to the triangle, a higher degree of tessellation is performed.

2. The tessellation evaluation shader

  • adds the new vertices
  • samples the high-resolution height map
  • moves the new vertices up or down, based on the value of the height map.

Result: The tessellated triangles that are close to the camera sample the height map at finer detail and add the small crevices and bumps where the camera can see them.

For more such intel resources and tools from Intel on Game, please visit the Intel® Game Developer Zone

Source: https://software.intel.com/en-us/articles/tessellation-for-opengl-es-31-on-android/

Connect On :