It’s recently been suggested to me that I should
“skip low level apis entirely for now and just use some high level libraries built on top of them. Because building on plain opengl/directx is a lot of work, even for an experienced programmer”
Can anyone suggest some or a place where i can find some that will suite me? Thanks!
It really depends on what you’re trying to do. Many people opt for something like SDL (simple directmedia layer) that is an abstraction over OpenGL/DirectDraw/GDI (and more) but it’s still kind of low-level. It works natively with c++.
http://www.libsdl.org/
One advantage of choosing a very popular library like this one is that there’s a TON of example work out there.