Announcement

Collapse
No announcement yet.

SDL2 Lands Long-Sought Geometry Render API

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • SDL2 Lands Long-Sought Geometry Render API

    Phoronix: SDL2 Lands Long-Sought Geometry Render API

    While not making it for last week's SDL 2.0.16 release, merged on Wednesday to the SDL2 development code is an "SDL_GeometryRender" interface that stems from feature requests going back nearly a decade for this graphics API independent triangle rendering API...

    Phoronix, Linux Hardware Reviews, Linux hardware benchmarks, Linux server benchmarks, Linux benchmarking, Desktop Linux, Linux performance, Open Source graphics, Linux How To, Ubuntu benchmarks, Ubuntu hardware, Phoronix Test Suite

  • #2
    Does this not work with the Vulkan backend?

    Comment


    • #3
      No Vulkan backend, as written in merge request.

      Comment


      • #4
        Meh... seems easier to just write a vertex shader in GLSL... or am I missing something?

        Comment


        • #5
          No Vulkan, no fun. Please fix it...

          Comment


          • #6
            There's a joke about how hard is to drawn a triangle in Vulkan, maybe the lack of support can be related to it.

            Comment


            • #7
              It's not simple in OpenGL either. Well, it is simple but still involves setting up depth buffer, color buffer, lighting model, projection matrix, modelview matrix, at minimum. It was like this in old, "convenient" OpenGL (1.2). Vulkan requires much much more preparation apparently. Pointless API imho. This is graphic engine's job.
              Last edited by reavertm; 19 August 2021, 10:12 AM.

              Comment


              • #8
                Originally posted by reavertm View Post
                It's not simple in OpenGL either. Well, it is simple but still involves setting up depth buffer, color buffer, lighting model, projection matrix, modelview matrix, at minimum. It was like this in old, "convenient" OpenGL (1.2). Vulkan requires much much more preparation apparently. Pointless API imho. This is graphic engine's job.
                But now someone can recreate the game "Elite" and doesn't need to depend on any specific API - just SDL.

                Comment


                • #9
                  The reason Vulkan is so powerful is specifically because it's so low-level, you essentially have to be a graphics engineer to use it. It's not like OpenGL or older Direct3D versions, it's not made for your average joe in his garage, it's made to be an industry standard created by a committee and for corporations, kind of like the USB driver spec. This is why almost no open source project supports Vulkan, it's just way too complex. What's much more approachable to small and independent projects is to target a simpler but less performant wrapper API over Vulkan. Which already exists, it's called OpenGL.

                  Comment


                  • #10
                    Originally posted by Ironmask View Post
                    The reason Vulkan is so powerful is specifically because it's so low-level, you essentially have to be a graphics engineer to use it. It's not like OpenGL or older Direct3D versions, it's not made for your average joe in his garage, it's made to be an industry standard created by a committee and for corporations, kind of like the USB driver spec. This is why almost no open source project supports Vulkan, it's just way too complex. What's much more approachable to small and independent projects is to target a simpler but less performant wrapper API over Vulkan. Which already exists, it's called OpenGL.
                    There are well documented for the Vulkan API, both offical and development aspect for it, both free and not. But then again, everything is hard when you actually don't know and easy when you do know. And the more you know....

                    Comment

                    Working...
                    X