Skip to content

Latest commit

 

History

History
50 lines (50 loc) · 1.11 KB

FEATURE.md

File metadata and controls

50 lines (50 loc) · 1.11 KB

Feature Lists

  • Rendering

    • Whitted Ray Tracing
    • Unidirectional Path Tracing
    • Unidirectional Path Tracing with Next Event Estimation
    • Bidirectional Path Tracing
    • Photon Mapping
    • Progressive Photon Mapping
    • AOV Rendering
      • Ambient Occlusion
      • World-Space Normal Map
      • UVs Map
  • Accelerator

    • BVH (equal, SAH)
    • K-d Tree (SAH)
  • BSDF

    • Absorber
    • Lambertian Diffuse
    • Specular Reflection
    • Specular Transmission
    • Specular Dielectric
    • Modified Phong
    • Mixed
    • Microfacet (conductor)
      • NDF: Beckmann, GGX, Blinn-Phong
  • Primitive

    • Sphere
    • Triangle
    • Rectangle
  • Light

    • Point Light
    • Area Light (rectangle)
    • Environment Light (with importance sampling)
  • Texture

    • Constant
    • Checkerboard
    • Image
      • supported type: gray, rgb
      • sample mode: nearest
      • UV wrap mode: clamp, repeat
  • Camera

    • Perspective Pinhole
  • Sampling

    • Random
    • Stratified
  • Reconstruction Filter

    • Box
    • Cone
    • Gaussian
    • Mitchell