├── .github └── ISSUE_TEMPLATE │ └── resource-request-template.md ├── LaTexMD ├── index.md └── template.md.html ├── README.md ├── _config.yml ├── css ├── github-markdown.css └── utils.css ├── index.html ├── res └── logos │ ├── Discord_Logo.png │ └── GitHub_Logo.png ├── resources ├── index.html └── tonemapping │ ├── camera.h │ ├── index.html │ ├── memorial.hdr │ ├── stb_image.h │ ├── stb_image_write.h │ ├── tonemap.cpp │ └── vec3.h ├── scripts ├── include.js └── markdeep │ ├── LICENSE │ └── markdeep.min.js └── showcase ├── 2020 ├── december │ └── index.html ├── index.html ├── november │ └── index.html ├── october │ └── index.html ├── showcase_preview.html └── year │ └── index.html ├── 2021 ├── april │ └── index.html ├── august │ └── index.html ├── december │ └── index.html ├── february │ └── index.html ├── index.html ├── january │ └── index.html ├── july │ └── index.html ├── june │ └── index.html ├── march │ └── index.html ├── may │ └── index.html ├── november │ └── index.html ├── october │ └── index.html ├── september │ └── index.html ├── showcase_preview.html └── year │ └── index.html ├── 2022 ├── index.html ├── january │ └── index.html └── showcase_preview.html └── index.html /.github/ISSUE_TEMPLATE/resource-request-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphicsProgramming/resources/HEAD/.github/ISSUE_TEMPLATE/resource-request-template.md -------------------------------------------------------------------------------- /LaTexMD/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphicsProgramming/resources/HEAD/LaTexMD/index.md -------------------------------------------------------------------------------- /LaTexMD/template.md.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphicsProgramming/resources/HEAD/LaTexMD/template.md.html -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphicsProgramming/resources/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphicsProgramming/resources/HEAD/_config.yml -------------------------------------------------------------------------------- /css/github-markdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphicsProgramming/resources/HEAD/css/github-markdown.css -------------------------------------------------------------------------------- /css/utils.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphicsProgramming/resources/HEAD/css/utils.css -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphicsProgramming/resources/HEAD/index.html -------------------------------------------------------------------------------- /res/logos/Discord_Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphicsProgramming/resources/HEAD/res/logos/Discord_Logo.png -------------------------------------------------------------------------------- /res/logos/GitHub_Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphicsProgramming/resources/HEAD/res/logos/GitHub_Logo.png -------------------------------------------------------------------------------- /resources/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphicsProgramming/resources/HEAD/resources/index.html -------------------------------------------------------------------------------- /resources/tonemapping/camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphicsProgramming/resources/HEAD/resources/tonemapping/camera.h -------------------------------------------------------------------------------- /resources/tonemapping/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphicsProgramming/resources/HEAD/resources/tonemapping/index.html -------------------------------------------------------------------------------- /resources/tonemapping/memorial.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphicsProgramming/resources/HEAD/resources/tonemapping/memorial.hdr -------------------------------------------------------------------------------- /resources/tonemapping/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphicsProgramming/resources/HEAD/resources/tonemapping/stb_image.h -------------------------------------------------------------------------------- /resources/tonemapping/stb_image_write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphicsProgramming/resources/HEAD/resources/tonemapping/stb_image_write.h -------------------------------------------------------------------------------- /resources/tonemapping/tonemap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphicsProgramming/resources/HEAD/resources/tonemapping/tonemap.cpp -------------------------------------------------------------------------------- /resources/tonemapping/vec3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphicsProgramming/resources/HEAD/resources/tonemapping/vec3.h -------------------------------------------------------------------------------- /scripts/include.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphicsProgramming/resources/HEAD/scripts/include.js -------------------------------------------------------------------------------- /scripts/markdeep/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphicsProgramming/resources/HEAD/scripts/markdeep/LICENSE -------------------------------------------------------------------------------- /scripts/markdeep/markdeep.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphicsProgramming/resources/HEAD/scripts/markdeep/markdeep.min.js -------------------------------------------------------------------------------- /showcase/2020/december/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphicsProgramming/resources/HEAD/showcase/2020/december/index.html -------------------------------------------------------------------------------- /showcase/2020/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphicsProgramming/resources/HEAD/showcase/2020/index.html -------------------------------------------------------------------------------- /showcase/2020/november/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphicsProgramming/resources/HEAD/showcase/2020/november/index.html -------------------------------------------------------------------------------- /showcase/2020/october/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphicsProgramming/resources/HEAD/showcase/2020/october/index.html -------------------------------------------------------------------------------- /showcase/2020/showcase_preview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphicsProgramming/resources/HEAD/showcase/2020/showcase_preview.html -------------------------------------------------------------------------------- /showcase/2020/year/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphicsProgramming/resources/HEAD/showcase/2020/year/index.html -------------------------------------------------------------------------------- /showcase/2021/april/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphicsProgramming/resources/HEAD/showcase/2021/april/index.html -------------------------------------------------------------------------------- /showcase/2021/august/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphicsProgramming/resources/HEAD/showcase/2021/august/index.html -------------------------------------------------------------------------------- /showcase/2021/december/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphicsProgramming/resources/HEAD/showcase/2021/december/index.html -------------------------------------------------------------------------------- /showcase/2021/february/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphicsProgramming/resources/HEAD/showcase/2021/february/index.html -------------------------------------------------------------------------------- /showcase/2021/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphicsProgramming/resources/HEAD/showcase/2021/index.html -------------------------------------------------------------------------------- /showcase/2021/january/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphicsProgramming/resources/HEAD/showcase/2021/january/index.html -------------------------------------------------------------------------------- /showcase/2021/july/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphicsProgramming/resources/HEAD/showcase/2021/july/index.html -------------------------------------------------------------------------------- /showcase/2021/june/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphicsProgramming/resources/HEAD/showcase/2021/june/index.html -------------------------------------------------------------------------------- /showcase/2021/march/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphicsProgramming/resources/HEAD/showcase/2021/march/index.html -------------------------------------------------------------------------------- /showcase/2021/may/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphicsProgramming/resources/HEAD/showcase/2021/may/index.html -------------------------------------------------------------------------------- /showcase/2021/november/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphicsProgramming/resources/HEAD/showcase/2021/november/index.html -------------------------------------------------------------------------------- /showcase/2021/october/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphicsProgramming/resources/HEAD/showcase/2021/october/index.html -------------------------------------------------------------------------------- /showcase/2021/september/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphicsProgramming/resources/HEAD/showcase/2021/september/index.html -------------------------------------------------------------------------------- /showcase/2021/showcase_preview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphicsProgramming/resources/HEAD/showcase/2021/showcase_preview.html -------------------------------------------------------------------------------- /showcase/2021/year/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphicsProgramming/resources/HEAD/showcase/2021/year/index.html -------------------------------------------------------------------------------- /showcase/2022/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphicsProgramming/resources/HEAD/showcase/2022/index.html -------------------------------------------------------------------------------- /showcase/2022/january/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphicsProgramming/resources/HEAD/showcase/2022/january/index.html -------------------------------------------------------------------------------- /showcase/2022/showcase_preview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphicsProgramming/resources/HEAD/showcase/2022/showcase_preview.html -------------------------------------------------------------------------------- /showcase/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphicsProgramming/resources/HEAD/showcase/index.html --------------------------------------------------------------------------------