field | topic | state |
---|---|---|
Graphics | OpenGL | WIP |
Graphics | Vulkan | LKD |
Graphics | DirectX 12 | LKD |
Graphics | Soft Renderer | DLD |
Graphics | PBR | DLD |
Graphics | Ray Tracing (CPU) | LKD |
Graphics | Ray Tracing (GPU) | NA |
Graphics | Shader | DLD |
Physics | 2D Physics | DLD |
Physics | 3D Physics | LKD |
Physics | Fluid Mechanics | LKD |
Parallel Computing | OpenCL | LKD |
Parallel Computing | CUDA | NA |
Architecture | Game Engine Design | DLD |
Architecture | Design Pattern | DLD |
P.L Theory | Compiler Design | LKD |
P.L Theory | Interpreter Design | DLD |
Asynchronous | Threading | DLD |
Others | Genetic Algorithm | LKD |
Others | DL | LKD |
Others | Networking | LKD |
Others | x64 Assembly | DLD |
state | desc |
---|---|
FIN | Finished |
WIP | Work In Progress |
DLD | Delayed |
LKD | Locked |
NA | Not Available |
OpenGL
- Window Setup
- Input Guide
- Simple Triangle
- Colorful Triangle
- Colorful Quad
- Transformation
- MVP
- Camera
- Texturing
- Going 3D
- Frame Buffer
- Depth Testing
- Stencil Testing
- Scissor
- Culling
- Skybox
- Billboard
- Directional Light
- Point Light
- Spot Light
- Specular Mapping
- Normal Mapping
- Parallax Mapping
- Shadow Mapping with Directional Light
- Shadow Mapping with Point Light
- Shadow Mapping with Spot Light
- Model Loading
- Instancing
- Batch Rendering
- Uniform Buffer
- Geometry Shader
- Tessellation Shader
- Deferred Rendering
- Z Pre-Pass
- Environmental Mapping
- Reflection
- Refraction
- Fresnel Effect
- HDR (High Dynamic Range) & Tone Mapping
- Bloom & Physically Based Bloom
- PBR (Physically Based Rendering)
- IBL (Image Based Rendering) & Irradiance System
- Skeletal Animation & Procedural Animation
- Occlusion Culling
- SSAO (Screen Space Ambient Occlusion)
- Global Illumination & Voxel Cone Tracing
- Toon Shading
- Font Rendering & SDF (Signed Distance Field)
- Bezier Spline & Spline Camera
- Unprojection & Mouse Picking
- Compute Shader
- GPU Particle System
- SSR (Screen Space Reflection)
- SSGI (Screen Space Global Illumination)
- HBAO (Horizon Based Ambient Occlusion)
- FXAA (Fast Approximate Anti-Aliasing)
- Depth Peeling
- Atmospheric Scattering
- Water Caustics & FFT (Fast Fourier Transform)
- Terrain Generation
- Indirect Buffer
- Pixel Buffer
- Transform Feedback Buffer
- Shader Storage Buffer
- Buffer Mapping
- DSA (Direct State Access)
- Channel Packing & Unpacking
- CSM (Cascaded Shadow Mapping)
- VSM (Variance Shadow Mapping)
- Shadow Volume
- Volumetric Lighting
- Bindless Texture
- Clustered Shading
- Tile Based Shading
- DoF (Depth of Field)
- SSS (Sub-Surface Scattering)
- Motion Blur
- Ray Tracing
- Path Tracing
- Ray Marching
- Occlusion Query
- BSP (Binary Space Partitioning)
- Octree
- BVH (Bounding Volume Hierarchy)
- Greedy Meshing
- Decal Rendering
- Fur Rendering
- Edge Detection
2D Physics
- Linear Motion
- Angular Motion
- Numerical Integrators
- Fundamental Collision Detection & MTV (Minimum Translation Vector)
- SAT (Separated Axis Theorem)
- GJK (Gilbert-Johnson-Keerthi) & EPA (Expanding Polytope Algorithm)
- SAP (Sweep And Prune)
- Centroid Calculation
- Moment of Inertia Calculation
- Quadtree
- Coefficient of Restitution
- Static & Dynamic Friction
- Manifold
- Friction
- Impulse & Tangent Impulse
- Accumulated Impulse
- Position Correction
- Sub Stepping
- Partitioning with Quadtree
- SAP
- Remove Tunneling
- Find Convex Hull
- Triangulation
- Joint
- Relative Force
- Ray Casting
- Mass-Spring Damper System
- Soft Body & Shape Matching
- Shape Composition
- Collision Layer & Mask
Threading
- std::thread
- std::jthread
- thread_local
- std::mutex
- std::shared_mutex
- std::timed_mutex
- std::recursive_mutex
- Traits
- Handle
- Generator
- Suspend
- Awaitable
- std::conditional_variable
- std::future
- std::promise
- std::async
- std::packaged_task
- std::barrier
- std::latch
- std::atomic
- std::unique_lock
- std::scoped_lock
- std::lock_guard
- Semaphore
- Spin Lock
- Reader-Writer Lock
- Thread Pool
- Thread-Safe Singleton
- Thread-Safe Logger
- Thread-Safe Timer
- Thread-Safe Cache
- Notify Queue
- safe_ptr