22
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
this post was submitted on 11 Jan 2026
22 points (78.9% liked)
Programming
24410 readers
361 users here now
Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!
Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.
Hope you enjoy the instance!
Rules
Rules
- Follow the programming.dev instance rules
- Keep content related to programming in some way
- If you're posting long videos try to add in some form of tldr for those who don't want to watch videos
Wormhole
Follow the wormhole through a path of communities !webdev@programming.dev
founded 2 years ago
MODERATORS
If you already know some programming languages, look for some kind of GUI or game library for it to see if you can use it. If not, something like Blender might be easiest to make in C++, Rust, C (if you're a masochist), or maybe Zig. This may also influence the shading language you choose. Start with this.
You will need to know some shader language. You have a few options there, but the most popular are GLSL and OpenGL (though I'd prefer GLSL). There's also WGSL and some others, but they aren't as popular. Prefer whatever the graphics library you're using wants you to use.
Math is very heavy on linear algebra. Look up PBR if you want to render realistic 3d shapes. Google's Filament is well documented and walks through implementing it yourself if you want, but it's pretty advanced, so you might want to start simpler (fragment colors can just be base color * light color * light attenuation * (N*L) for example).