Added slang shaders for ssao sample
This commit is contained in:
parent
8d50885e92
commit
80ff4a41d2
6 changed files with 261 additions and 0 deletions
16
shaders/slang/ssao/fullscreen.slang
Normal file
16
shaders/slang/ssao/fullscreen.slang
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
/* Copyright (c) 2025, Sascha Willems
|
||||
*
|
||||
* SPDX-License-Identifier: MIT
|
||||
*
|
||||
*/
|
||||
|
||||
import types;
|
||||
|
||||
[shader("vertex")]
|
||||
VSOutput vertexMain(uint VertexIndex : SV_VertexID)
|
||||
{
|
||||
VSOutput output;
|
||||
output.UV = float2((VertexIndex << 1) & 2, VertexIndex & 2);
|
||||
output.Pos = float4(output.UV * 2.0f - 1.0f, 0.0f, 1.0f);
|
||||
return output;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue