+ 6
Are there some guides that teach me how graphics is made in c++? For example the graphics of windows applications..
7 Respuestas
+ 12
you can create windows forms applications and many others with c++ in visual studio
+ 7
As stated before SDL2 is good
- I use it for game making but it is a flexable library
https://www.sololearn.com/discuss/498964/?ref=app
+ 6
A couple of tutorials for C++ graphics:
https://www.cprogramming.com/graphics-programming.html
http://www.tutorialspoint.com/listtutorials/c-and-c++/graphics/1
+ 5
OpenCV C++ graphics
https://www.sololearn.com/discuss/578649/?ref=app
+ 3
Have you tried googling C+9 GUI?
+ 1
Graphics are usually made using DirectX or OpenGL. For an easier start try the SDL or SFML libraries or Ogre if you need 3D.
+ 1
thanks to all