Part of the Khronos Group
OpenGL.org

The Industry's Foundation for High Performance Graphics

from games to virtual reality, mobile phones to supercomputers

Search:

Type: Posts; User: MakKlaski

Search: Search took 0.00 seconds.

  1. Replies
    14
    Views
    2,996

    But there could be some optimizations, when all 4...

    But there could be some optimizations, when all 4 points are less or greater than Z buffer and some hierarchical zbuffer testing is used.
  2. Replies
    14
    Views
    2,996

    Well, GPU should get smarter. Recently it figured...

    Well, GPU should get smarter. Recently it figured out how to tessellate primitives. There is a evolution here ;)

    I'm not talking about 1 tetrahedron. I'm talking about a mesh made of thousands of...
  3. Replies
    14
    Views
    2,996

    For example the point light can be done like...

    For example the point light can be done like this: we take a polygonal sphere and fill it with tetrahedrons - all sharing the vertex in the center of the sphere. Other 3 vertices of tetrahedrons...
  4. Replies
    14
    Views
    2,996

    No, I'm not talking about rendering to 3D...

    No, I'm not talking about rendering to 3D texture.
    My idea is more similar to rendering lights in deferred shading.
    When the scene is drawn we have a depth buffer to work with.
    So for each pixel...
  5. Replies
    14
    Views
    2,996

    Re: glDrawElements - Tetrahedron

    I don't think that it requires a lot of work as it is a convex shape. It's just a rasterization of back and front sides at the same time and getting depths.
  6. Replies
    14
    Views
    2,996

    Re: glDrawElements - Tetrahedron

    Yes, the depth test for volumetric object can be INSIDE, not only LESS or GREATER. Or even OUTSIDE, if it is needed.

    You can create any shape with tetrahedrons by putting them together just like...
  7. Replies
    14
    Views
    2,996

    glDrawElements - Tetrahedron

    Hello!
    We have functionality to draw points (1 vertex), lines (2 vertices), triangles (3 vertices).
    Why don't we have a possibility to draw tetrahedron (4 vertices)?

    4 vertices can be projected...
Results 1 to 7 of 7