Skip to content

Commit

Permalink
test changes with source files
Browse files Browse the repository at this point in the history
  • Loading branch information
rjwignar committed Feb 29, 2024
1 parent 65180dc commit de0d9a7
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@

struct PerPassParallax
{
{\
// comment
bool EnableComplexMaterial;

bool EnableParallax;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ SamplerState LinearSampler : register(s0);
// this particular fragment in a cubemap.
float3 GetSamplingVector(uint3 ThreadID, in RWTexture2DArray<float4> OutputTexture)
{
// comment
float width = 0.0f;
float height = 0.0f;
float depth = 0.0f;
Expand Down
1 change: 1 addition & 0 deletions src/Features/DistantTreeLighting.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ NLOHMANN_DEFINE_TYPE_NON_INTRUSIVE_WITH_DEFAULT(

void DistantTreeLighting::DrawSettings()
{
// comment
if (ImGui::TreeNodeEx("Complex Tree LOD", ImGuiTreeNodeFlags_DefaultOpen)) {
ImGui::Checkbox("Enable Complex Tree LOD", (bool*)&settings.EnableComplexTreeLOD);
if (auto _tt = Util::HoverTooltipWrapper()) {
Expand Down
1 change: 1 addition & 0 deletions src/Features/DistantTreeLighting.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@

struct DistantTreeLighting : Feature
{
// comment
static DistantTreeLighting* GetSingleton()
{
static DistantTreeLighting singleton;
Expand Down

0 comments on commit de0d9a7

Please sign in to comment.