Draft
docs: mark shadow map complete and add implementation summary to README#6
Conversation
Agent-Logs-Url: https://github.com/fl0a1e/easy_vulkan/sessions/42d02fcd-2c0b-46c8-8fe2-8f80e9819f26 Co-authored-by: fl0a1e <57005028+fl0a1e@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Update Vulkan usage instructions in README
docs: mark shadow map complete and add implementation summary to README
Apr 9, 2026
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
The "shadow map" TODO item was still unchecked despite the feature being fully implemented in commit
0266f57.Changes
- [ ] shadow map→- [x] shadow mapComputeShadowFactordrives shadow modulationTwo-pass flow at a glance
shadow.vs.hlsl,CreateRpwf_Shadow()triangle.vs.hlsl(outputsShadowPosition),triangle.ps.hlsl(ComputeShadowFactor)Shadow factor is
1.0(lit) or0.28(occluded) based on depth comparison with a 0.0025 bias, modulating both diffuse and specular terms.