-
Notifications
You must be signed in to change notification settings - Fork 137
perf: optimise DeferredComposite #2150
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Changes from all commits
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
31e050d
perf: use ps for deferred
doodlum d5b8c04
perf: more optimisations
doodlum 1944cd7
chore: delete cs shader
doodlum 1f6e17e
perf: more optimisations
doodlum 6fa9405
style: 🎨 apply pre-commit.ci formatting
pre-commit-ci[bot] 80a7d1f
refactor: clean up bindings
doodlum 1334849
Merge branch 'ps-opt' of https://github.com/doodlum/skyrim-community-…
doodlum 01d90aa
Merge branch 'dev' into ps-opt
doodlum 53c6593
Merge branch 'ps-opt' of https://github.com/doodlum/skyrim-community-…
doodlum ec4ffb5
chore: clanker changes
doodlum 866ca15
refactor: dont use half
doodlum e978647
style: 🎨 apply pre-commit.ci formatting
pre-commit-ci[bot] 5d024b4
perf: remove normalroughness entirely
doodlum 751fcbd
Merge branch 'ps-opt' of https://github.com/doodlum/skyrim-community-…
doodlum be1f481
fix: fix normals
doodlum d50e3dc
perf: ignore sky
doodlum 4ca2a78
fix: fix normal srv
doodlum dbd478c
style: 🎨 apply pre-commit.ci formatting
pre-commit-ci[bot] 2a0b214
fix: fix test failure due to view space normal
doodlum 4ecf278
style: 🎨 apply pre-commit.ci formatting
pre-commit-ci[bot] 73a2b64
chore: ignore gs
doodlum d96e1df
Merge branch 'ps-opt' of https://github.com/doodlum/skyrim-community-…
doodlum File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,14 @@ | ||
| struct VS_OUTPUT | ||
| { | ||
| float4 Position: SV_Position; | ||
| float2 TexCoord: TEXCOORD0; | ||
| }; | ||
|
|
||
| VS_OUTPUT main(uint vertexID : SV_VertexID) | ||
| { | ||
| VS_OUTPUT output; | ||
| float2 uv = float2((vertexID << 1) & 2, vertexID & 2); | ||
| output.Position = float4(uv * float2(2, -2) + float2(-1, 1), 1, 1); | ||
| output.TexCoord = uv; | ||
| return output; | ||
| } |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.