Questions tagged [tesselation]

Tessellation is a 3D graphics feature that allows detail to be dynamically added to geometry at runtime. This is accomplished by programmatically subdividing and displacing polygons using shaders. This feature was introduced into mainstream realtime graphics with OpenGL 4.0 and DirectX 11.

Useful Links:

63 questions
0
votes
0 answers

what's wrong with my GLSL tessellation shader

I'm learning GLSL tessellation and wrote a program to tessellate a triangle. I use glPatchparameterfv to specify inner and outer tessellation level, so no tessellation control shader is used. The problem is nothing shows up after tessellation shader…
user11869
  • 1,083
  • 2
  • 14
  • 29
0
votes
3 answers

Triangulated Irregular Networks from qhull

I wanted to create TINs from 3D points (about 7 million in every file) using qhull. can anyone suggest a place where i could probably see how to do this? thanks!
asel
  • 1,099
  • 5
  • 14
  • 18
0
votes
2 answers

Phong Shading vs Tessellation

I ran across Phong Shading while looking at the Source Engine. The desription sounds very much like Tessellation. But when I looked it up, I didn't really find anything directly comparing the two. Now in DirectX Tessellation isn't used like Phong…
1 2 3 4
5