Projects
Discord
Events
Jams
Unwind
Conferences
Resources
Forums
Fishbowls
Podcast
Newsletter
About
Manifesto
About the Team
Log In
← Back to index
win32 and GDI
C_Worm
#21205
June 30, 2019
Is there any reason to ever use the GDI functions like:
SetPixel();
Rectangle();
FillRect();
RoundRect();
Polygon();
Ellipse();
Please tell in what situations they would be good for game programing or any other application?
Or are they just deprecated in some sence?
Edited by
C_Worm
on
June 30, 2019, 9:02pm
Reason: Initial post
ratchetfreak
#21208
July 1, 2019
They are nice when you don't want to deal with opengl/D3D and the hassle those things bring.
Especially because those are focused on drawing triangles, when you want to touch pixels directly it's a bit of a hassle.
Reply to Thread
← Back to index