Skip to content

Commit

Permalink
testing with only cpp source files modified, shader files not included
Browse files Browse the repository at this point in the history
  • Loading branch information
rjwignar committed Nov 25, 2023
1 parent 221ee40 commit dcfdf31
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/clang_format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,6 @@ jobs:
files: |
src/Features/*.cpp
src/Features/*.h
**/*.hlsl
**/*.hlsli
- name: List all changed files
run: |
for file in ${{ steps.changed-files.outputs.all_changed_files }}; do
Expand Down
1 change: 1 addition & 0 deletions src/Features/DistantTreeLighting.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ void DistantTreeLighting::DrawSettings()
ImGui::TreePop();
}


if (ImGui::TreeNodeEx("Effects", ImGuiTreeNodeFlags_DefaultOpen)) {
ImGui::SliderFloat("SSS Amount", &settings.SubsurfaceScatteringAmount, 0.0f, 1.0f);
if (ImGui::IsItemHovered()) {
Expand Down
1 change: 1 addition & 0 deletions src/Features/DistantTreeLighting.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ struct DistantTreeLighting : Feature
return &singleton;
}


virtual inline std::string GetName() { return "Tree LOD Lighting"; }
virtual inline std::string GetShortName() { return "TreeLODLighting"; }

Expand Down

0 comments on commit dcfdf31

Please sign in to comment.