style: re-format tree with editorconfig

```
find $PWD \
  -type f \
  ! -path '*/.git/*' ! -path '*/flatpak/shared-modules/*' \
  ! -path '*/libraries/*' ! -path '*/testdata/*' ! -name '*.patch' \
  ! -name '*.svg' ! -name '*.scd' ! -path '*/program_info/LICENSE' \
  ! -path '*/COPYING.md' ! -path '*/cmake/*' ! -name '.gitmodules' \
  -exec eclint -fix {} \;
```

Signed-off-by: Seth Flynn <getchoo@tuta.io>
This commit is contained in:
Seth Flynn 2026-01-18 15:15:14 -05:00
parent 686ad72e03
commit fd91f87c21
No known key found for this signature in database
GPG key ID: D31BD0D494BBEE86
64 changed files with 323 additions and 323 deletions

View file

@ -3,7 +3,7 @@
// https://code.qt.io/cgit/qt/qtbase.git/tree/examples/opengl/cube/vshader.glsl
// Dylan Schooner - 2025
// Modification: Implemented final Z-NDC re-inversion to compensate
// Modification: Implemented final Z-NDC re-inversion to compensate
// for rigid OpenGL 2.0 context forcing glClearDepth(1.0).
// This flips the high-precision Reverse Z output to the standard [0, W] range.