https://github.com/mikhailgorobets/orderindependenttransparency
Order-Independent Transparency using Linked Lists
https://github.com/mikhailgorobets/orderindependenttransparency
computer-graphics diligent diligentcore msaa order-independent-transparency shader
Last synced: 3 months ago
JSON representation
Order-Independent Transparency using Linked Lists
- Host: GitHub
- URL: https://github.com/mikhailgorobets/orderindependenttransparency
- Owner: MikhailGorobets
- Created: 2020-11-30T18:07:29.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-11-27T13:14:32.000Z (over 3 years ago)
- Last Synced: 2026-01-01T18:40:53.028Z (7 months ago)
- Topics: computer-graphics, diligent, diligentcore, msaa, order-independent-transparency, shader
- Language: C++
- Homepage:
- Size: 20.5 KB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Order Independent Transparency
To get the repository and all submodules, use the following command:
```
git clone --recursive https://github.com/MikhailGorobets/OrderIndependentTransparency
```
When updating existing repository, don't forget to update all submodules:
```
git pull
git submodule update --init --recursive
```
Build prerequisites:
* Windows SDK 10.0.19041.0 or later
* C++ build tools
Use either CMake GUI or command line tool to generate build files. For example, to generate
[Visual Studio 2019](https://www.visualstudio.com/vs/community) 64-bit solution and project files in *build/Win64* folder,
navigate to the engine's root folder and run the following command:
```
cmake -S . -B ./build/Win64 -G "Visual Studio 16 2019" -A x64
```