Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8187459
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T02:34:08+00:00 2026-06-07T02:34:08+00:00

With OpenGL 4.0, shader tessellation support has been added. What is the difference between

  • 0

With OpenGL 4.0, shader tessellation support has been added.
What is the difference between per primitive tessellation and vao vertex preloading in terms of performance?
By vao vertex preloading I mean loading all the vertex data in a vao and rendering it while keeping the tesselated surface in the RAM, instead of creating the tesselated surface on the fly through the shader pipeline.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-07T02:34:10+00:00Added an answer on June 7, 2026 at 2:34 am

    The answer is very definitely “it depends.”

    OK, you’ve got a bunch of control points for a mesh (Bezier, NURB, Catmull-Clark, …). In classic OpenGL you’d tessellate the control points on the CPU and store the triangles in a VAO collection of vertex buffer objects. With OpenGL 4 you can pass the control points in a VAO, render as GL_PATCHES, and have the control and evaluation shaders generate the triangles.

    If the mesh of control points is static and rarely changes, the CPU solution is better because you only do the tessellation once and store the results, instead of recalculating exactly the same tessellation each frame.

    If the mesh changes, then the GPU solution will be better. Copying new control points from CPU to GPU is quicker because less data, and the GPU can tessellate in parallel so will be faster. GPU side tessellation can now change the level of detail by distance (or whatever) at individual quads within the mesh, so you can implement ROAM type algorithms with shaders.

    Unless your GPU is already heavily loaded, say by a complex lighting and shadowing algorithm, and the CPU is lightly loaded. In which case doing tessellation on the CPU gives overall better system performance even if the tessellation itself takes longer.

    Which is you? Try it and see!

    (And also be aware that it might not matter at all. Modern 3D systems are awesomely fast.)

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to draw a quadrilateral using OpenGL ES 2.0. My vertex shader looks
In OpenGL ES 2.0, is it possible to use a compiled vertex/fragment shader in
In OpenGL 2.1, I'm passing a position and normal vector to my vertex shader.
I am developing an OpenGL application for the iPhone. In my vertex shader, I
In the OpenGL ES 2.0 introduction, found here: http://www.webreference.com/programming/opengl_es/2.html a vertex shader is defined:
I've been trying to create simple diffuse lighting shader for Android using OpenGL ES
I introduced a geometry shader to my OpenGL application. My shaders have quite a
Could anyone recommend some beginner opengl books from a shader approach? Also, looking for
I am new to OpenGL ES 2.0, and cannot understand the following simplest shader:
I am working on a OpenGL ES 2.0 shader and I have tightly packed

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.