├── .eslintrc.js ├── .github └── workflows │ └── main.yml ├── .gitignore ├── .npmrc ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── assets ├── diary-svgrepo-com.svg ├── github.svg ├── question-svgrepo-com.svg ├── search-heart-fill.svg └── search-heart.svg ├── entries ├── GI │ ├── gibs.md │ ├── large_scale_gi_activision.md │ └── radiance_caching_lumen.md ├── antialiasing-upscaling │ ├── FSR1.md │ └── FSR2.md ├── deferred │ └── adventures_deferred_texturing.md ├── gpu │ └── efficient_use_of_gpu_memory.md ├── lighting │ ├── real_time_samurai_cinema.md │ └── variable_rate_compute_shaders_xsx.md ├── optimization │ ├── rendering_doom_eternal.md │ └── software_vrs.md ├── rasterization │ ├── geometry_rendering_activision.md │ └── nanite.md ├── raytracing │ └── spatiotemporal_reservoir_resampling.md ├── rendering_equation.md ├── shaders │ └── shader_permutation_problem.md ├── shading │ └── preintegrated_skin_shading.md ├── shadows │ └── shadows_of_cold_war.md └── terrain │ └── terrain_concurrent_binary_trees.md ├── entry_template.md ├── index.html ├── package.json ├── project.sublime-project ├── scripts ├── build.js └── color_conversion.js ├── src ├── main.css └── main.js └── tailwind.config.js /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyong/paperbug/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyong/paperbug/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | *.sublime-workspace 4 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict=true -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyong/paperbug/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyong/paperbug/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyong/paperbug/HEAD/README.md -------------------------------------------------------------------------------- /assets/diary-svgrepo-com.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyong/paperbug/HEAD/assets/diary-svgrepo-com.svg -------------------------------------------------------------------------------- /assets/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyong/paperbug/HEAD/assets/github.svg -------------------------------------------------------------------------------- /assets/question-svgrepo-com.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyong/paperbug/HEAD/assets/question-svgrepo-com.svg -------------------------------------------------------------------------------- /assets/search-heart-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyong/paperbug/HEAD/assets/search-heart-fill.svg -------------------------------------------------------------------------------- /assets/search-heart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyong/paperbug/HEAD/assets/search-heart.svg -------------------------------------------------------------------------------- /entries/GI/gibs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyong/paperbug/HEAD/entries/GI/gibs.md -------------------------------------------------------------------------------- /entries/GI/large_scale_gi_activision.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyong/paperbug/HEAD/entries/GI/large_scale_gi_activision.md -------------------------------------------------------------------------------- /entries/GI/radiance_caching_lumen.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyong/paperbug/HEAD/entries/GI/radiance_caching_lumen.md -------------------------------------------------------------------------------- /entries/antialiasing-upscaling/FSR1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyong/paperbug/HEAD/entries/antialiasing-upscaling/FSR1.md -------------------------------------------------------------------------------- /entries/antialiasing-upscaling/FSR2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyong/paperbug/HEAD/entries/antialiasing-upscaling/FSR2.md -------------------------------------------------------------------------------- /entries/deferred/adventures_deferred_texturing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyong/paperbug/HEAD/entries/deferred/adventures_deferred_texturing.md -------------------------------------------------------------------------------- /entries/gpu/efficient_use_of_gpu_memory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyong/paperbug/HEAD/entries/gpu/efficient_use_of_gpu_memory.md -------------------------------------------------------------------------------- /entries/lighting/real_time_samurai_cinema.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyong/paperbug/HEAD/entries/lighting/real_time_samurai_cinema.md -------------------------------------------------------------------------------- /entries/lighting/variable_rate_compute_shaders_xsx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyong/paperbug/HEAD/entries/lighting/variable_rate_compute_shaders_xsx.md -------------------------------------------------------------------------------- /entries/optimization/rendering_doom_eternal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyong/paperbug/HEAD/entries/optimization/rendering_doom_eternal.md -------------------------------------------------------------------------------- /entries/optimization/software_vrs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyong/paperbug/HEAD/entries/optimization/software_vrs.md -------------------------------------------------------------------------------- /entries/rasterization/geometry_rendering_activision.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyong/paperbug/HEAD/entries/rasterization/geometry_rendering_activision.md -------------------------------------------------------------------------------- /entries/rasterization/nanite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyong/paperbug/HEAD/entries/rasterization/nanite.md -------------------------------------------------------------------------------- /entries/raytracing/spatiotemporal_reservoir_resampling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyong/paperbug/HEAD/entries/raytracing/spatiotemporal_reservoir_resampling.md -------------------------------------------------------------------------------- /entries/rendering_equation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyong/paperbug/HEAD/entries/rendering_equation.md -------------------------------------------------------------------------------- /entries/shaders/shader_permutation_problem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyong/paperbug/HEAD/entries/shaders/shader_permutation_problem.md -------------------------------------------------------------------------------- /entries/shading/preintegrated_skin_shading.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyong/paperbug/HEAD/entries/shading/preintegrated_skin_shading.md -------------------------------------------------------------------------------- /entries/shadows/shadows_of_cold_war.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyong/paperbug/HEAD/entries/shadows/shadows_of_cold_war.md -------------------------------------------------------------------------------- /entries/terrain/terrain_concurrent_binary_trees.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyong/paperbug/HEAD/entries/terrain/terrain_concurrent_binary_trees.md -------------------------------------------------------------------------------- /entry_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyong/paperbug/HEAD/entry_template.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyong/paperbug/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyong/paperbug/HEAD/package.json -------------------------------------------------------------------------------- /project.sublime-project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyong/paperbug/HEAD/project.sublime-project -------------------------------------------------------------------------------- /scripts/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyong/paperbug/HEAD/scripts/build.js -------------------------------------------------------------------------------- /scripts/color_conversion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyong/paperbug/HEAD/scripts/color_conversion.js -------------------------------------------------------------------------------- /src/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyong/paperbug/HEAD/src/main.css -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyong/paperbug/HEAD/src/main.js -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyong/paperbug/HEAD/tailwind.config.js --------------------------------------------------------------------------------