Skip to content

Commit c37c921

Browse files
committed
restore new lines at the end of the file
1 parent bcea8aa commit c37c921

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

Tests/DiligentCoreTest/assets/shaders/SPIRV/InputAttachments.psh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ float4 main() : SV_Target
1111

1212
// Process the input color
1313
return color * 2.0;
14-
}
14+
}

Tests/DiligentCoreTest/assets/shaders/SPIRV/MixedResources.psh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,4 +60,4 @@ float4 main() : SV_Target
6060
color.rgb *= sin(PushConstants.Time) * 0.5 + 0.5;
6161

6262
return color;
63-
}
63+
}

Tests/DiligentCoreTest/assets/shaders/SPIRV/PushConstants.psh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ float4 main() : SV_Target
2020
result.xy += PushConstants.g_Offset;
2121

2222
return result;
23-
}
23+
}

Tests/DiligentCoreTest/assets/shaders/SPIRV/StorageImages.psh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ float4 main() : SV_Target
1717
color += g_RWImage3D[uint3(0, 0, 0)];
1818

1919
return color;
20-
}
20+
}

Tests/DiligentCoreTest/assets/shaders/SPIRV/TexelBuffers.psh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ float4 main() : SV_Target
1212

1313
// Read back from storage texel buffer
1414
return g_StorageTexelBuffer[0];
15-
}
15+
}

Tests/DiligentCoreTest/assets/shaders/SPIRV/Textures.psh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,4 @@ float4 main() : SV_Target
2727
float4 color6 = g_Texture.Sample(g_Texture_sampler, float2(0.5, 0.5));
2828

2929
return color1 + color2 + color3 + color4 + color5 + color6;
30-
}
30+
}

Tests/DiligentCoreTest/assets/shaders/SPIRV/UniformBuffers.psh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ cbuffer CB2 : register(b2)
1717
float4 main() : SV_Target
1818
{
1919
return g_Color * g_MaterialParams;
20-
}
20+
}

0 commit comments

Comments
 (0)