├── .gitignore ├── CMakeLists.txt ├── CONTRIBUTING ├── LICENSE ├── README.md ├── common.h ├── doc └── screenshot.png ├── framebuffer.hpp ├── main.cpp ├── test.frag.glsl └── test.vert.glsl /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvpro-samples/vk_async_resources/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvpro-samples/vk_async_resources/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CONTRIBUTING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvpro-samples/vk_async_resources/HEAD/CONTRIBUTING -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvpro-samples/vk_async_resources/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvpro-samples/vk_async_resources/HEAD/README.md -------------------------------------------------------------------------------- /common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvpro-samples/vk_async_resources/HEAD/common.h -------------------------------------------------------------------------------- /doc/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvpro-samples/vk_async_resources/HEAD/doc/screenshot.png -------------------------------------------------------------------------------- /framebuffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvpro-samples/vk_async_resources/HEAD/framebuffer.hpp -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvpro-samples/vk_async_resources/HEAD/main.cpp -------------------------------------------------------------------------------- /test.frag.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvpro-samples/vk_async_resources/HEAD/test.frag.glsl -------------------------------------------------------------------------------- /test.vert.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvpro-samples/vk_async_resources/HEAD/test.vert.glsl --------------------------------------------------------------------------------