Add Order Independent Transparency example (#755)

* Add Order Independent Transparency example

* Update README.md

* Add copyright at Order Independent Transparency example

* Disable the validation by default
This commit is contained in:
daemyung jang 2020-08-21 16:27:06 +09:00 committed by GitHub
parent d6b61a0952
commit 82747df540
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
11 changed files with 822 additions and 0 deletions

View file

@ -180,6 +180,10 @@ Generating a complete mip-chain at runtime instead of loading it from a file, by
Capturing and saving an image after a scene has been rendered using blits to copy the last swapchain image from optimal device to host local linear memory, so that it can be stored into a ppm image.
#### [08 - Order Independent Transparency](examples/oit)
Implements order independent transparency based on the linked list. This example use the storage buffer, the image load and store operations and atomic operations.
### <a name="Performance"></a> Performance
#### [01 - Multi threaded command buffer generation](examples/multithreading/)