olorin99@kbin.earthtoProgrammer Humor@lemmy.ml•Ok, at some point we made a big mistake.
16·
9 months agoYou can have a pointer to a pointer in c++ too tho?
You can have a pointer to a pointer in c++ too tho?
Neither is inherently better. It depends on what you need. Vulkan gives you more control which can be beneficial for advanced rendering techniques however comes at the cost of requiring more knowledge to use. OpenGL is simpler but generally has higher driver overhead.
deleted by creator
void* ptr2 = &ptr1; ptr1 = &ptr2;```