diff options
author | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2025-06-04 21:56:05 +0200 |
---|---|---|
committer | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2025-06-04 21:56:05 +0200 |
commit | 4ed086be0a77a624b252f77263e3241b85f5727f (patch) | |
tree | 3423ab298383a60cab719e92691b94101a2d0306 /hk21/game/gpu.cpp | |
parent | 7ec394db8961009e6ac23fea909f8353d865f7a3 (diff) |
Diffstat (limited to 'hk21/game/gpu.cpp')
-rw-r--r-- | hk21/game/gpu.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/hk21/game/gpu.cpp b/hk21/game/gpu.cpp index a929e1a..220b99b 100644 --- a/hk21/game/gpu.cpp +++ b/hk21/game/gpu.cpp @@ -446,9 +446,9 @@ public: {
if (f.colorSpace == VK_COLOR_SPACE_SRGB_NONLINEAR_KHR &&
(f.format == VK_FORMAT_B8G8R8_UNORM ||
- f.format == VK_FORMAT_B8G8R8A8_UNORM ||
- f.format == VK_FORMAT_R8G8B8_UNORM ||
- f.format == VK_FORMAT_R8G8B8A8_UNORM))
+ f.format == VK_FORMAT_B8G8R8A8_UNORM ||
+ f.format == VK_FORMAT_R8G8B8_UNORM ||
+ f.format == VK_FORMAT_R8G8B8A8_UNORM))
{
format = f;
break;
|