added missing trailing line.

merge-requests/60/head
Squall Leonhart 2023-10-16 06:07:26 +07:00 committed by GitHub
parent 4b0291172e
commit 90c56f5dc1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

@ -12,4 +12,4 @@ void main() {
float depth = texelFetch(depth_tex, coord, 0).r; float depth = texelFetch(depth_tex, coord, 0).r;
color = vec4(depth, depth, depth, 1.0); color = vec4(depth, depth, depth, 1.0);
color = color.bgra; // Swap color channels for BGRA format color = color.bgra; // Swap color channels for BGRA format
} }