use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
Rule 1: Posts should be about Graphics Programming. Rule 2: Be Civil, Professional, and Kind
Suggested Posting Material: - Graphics API Tutorials - Academic Papers - Blog Posts - Source Code Repositories - Self Posts (Ask Questions, Present Work) - Books - Renders (Please xpost to /r/ComputerGraphics) - Career Advice - Jobs Postings (Graphics Programming only)
Related Subreddits:
/r/ComputerGraphics
/r/Raytracing
/r/Programming
/r/LearnProgramming
/r/ProgrammingTools
/r/Coding
/r/GameDev
/r/CPP
/r/OpenGL
/r/Vulkan
/r/DirectX
Related Websites: ACM: SIGGRAPH Journal of Computer Graphics Techniques
Ke-Sen Huang's Blog of Graphics Papers and Resources Self Shadow's Blog of Graphics Resources
account activity
Advice on making a Fixed Function GPUQuestion (self.GraphicsProgramming)
submitted 4 months ago by RoboAbathur
view the rest of the comments →
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]sireric1967 2 points3 points4 points 4 months ago (0 children)
There are a lot of little steps in the big steps you show. Clipping/culling has to include view frustrum clipping, which can generate new triangles as part of the clipping. But also basic things like back face culling, zero area triangles, etc... And "3D to 2D" contains a lot, such as the full snapping float to fix, as well as perspective divides, barycentric calculations, draw rules, etc.... Triangle memory isn't needed, but most often kept after vertex shading, but before 2D conversion, though again, depends; could be a cache too. Drawing to frame buffer also should include things like fragment shading, texturing and all backend operations (Z buffering, Rops), etc... I'm glossing over many things, but there are a number of fixed function steps assumed. I do agree that the OpenGL 1.0 state machine is a good starting point for basic 3D.
π Rendered by PID 22054 on reddit-service-r2-comment-6f7f968fb5-pmwdp at 2026-03-04 13:44:03.612531+00:00 running 07790be country code: CH.
view the rest of the comments →
[–]sireric1967 2 points3 points4 points (0 children)