Announcement

Collapse
No announcement yet.

Vulkan Cracks 2,500 Projects On GitHub

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

  • #21
    Originally posted by uid313 View Post
    Maybe Vulkan on Python or JavaScript is still faster than OpenGL on Python or Java?
    Maybe coding against Vulkan is easier than coding against OpenGL? I don't know.
    make that a lot slower. vulkan is basically shitton of minimalistic instructions which means languages like python or js fare far slower than with opengl if you'd go with raw vulkan. vulkan can be faster in c, c++... since there is no impact on issuing those tons of instructions and being low level allows you to do exactly what you need and nothing more. that and being able to code your solution to use as many cores as possible which is another thing where python, js fare fairly bad

    what you want is specialized framework which works what you need on high level and has bindings for the language. in that case that framework works fast internally fast and has little impact on python calls

    coding is not easier, it is probably harder since you need to go low level. just look at triangle sample in opengl and vulkan. what is easier is to make better and more predictable result once you know what you're doing

    Comment

    Working...
    X