diff --git a/features/Complex Parallax Materials/Shaders/ComplexParallaxMaterials/ComplexParallaxMaterials.hlsli b/features/Complex Parallax Materials/Shaders/ComplexParallaxMaterials/ComplexParallaxMaterials.hlsli index 5583f1506..d905b5150 100644 --- a/features/Complex Parallax Materials/Shaders/ComplexParallaxMaterials/ComplexParallaxMaterials.hlsli +++ b/features/Complex Parallax Materials/Shaders/ComplexParallaxMaterials/ComplexParallaxMaterials.hlsli @@ -1,6 +1,7 @@ struct PerPassParallax -{ +{\ + // comment bool EnableComplexMaterial; bool EnableParallax; diff --git a/features/Dynamic Cubemaps/Shaders/DynamicCubemaps/InferCubemapCS.hlsl b/features/Dynamic Cubemaps/Shaders/DynamicCubemaps/InferCubemapCS.hlsl index 94bc54016..763555e6b 100644 --- a/features/Dynamic Cubemaps/Shaders/DynamicCubemaps/InferCubemapCS.hlsl +++ b/features/Dynamic Cubemaps/Shaders/DynamicCubemaps/InferCubemapCS.hlsl @@ -10,6 +10,7 @@ SamplerState LinearSampler : register(s0); // this particular fragment in a cubemap. float3 GetSamplingVector(uint3 ThreadID, in RWTexture2DArray OutputTexture) { + // comment float width = 0.0f; float height = 0.0f; float depth = 0.0f; diff --git a/src/Features/DistantTreeLighting.cpp b/src/Features/DistantTreeLighting.cpp index 495f4b9d5..7e0599574 100644 --- a/src/Features/DistantTreeLighting.cpp +++ b/src/Features/DistantTreeLighting.cpp @@ -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()) { diff --git a/src/Features/DistantTreeLighting.h b/src/Features/DistantTreeLighting.h index c8817ba01..0a60e92b8 100644 --- a/src/Features/DistantTreeLighting.h +++ b/src/Features/DistantTreeLighting.h @@ -5,6 +5,7 @@ struct DistantTreeLighting : Feature { + // comment static DistantTreeLighting* GetSingleton() { static DistantTreeLighting singleton;