mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-03-23 10:50:58 +00:00
[vulkan] Switch deferred opaque attachment to f16 rgb
While looking at the deferred attachment images with using a template in mind, I noticed that the opaque attachment was using 8-bit color. The problem is, it's meant to be HDRI with the compose pass crunching it down to LDRI. Switching to 16-bit float does seem to have made a subtle difference (hey, it's still quake data, not much HDRI in there).
This commit is contained in:
parent
39e7c4a9b2
commit
d3d081ea0a
1 changed files with 1 additions and 1 deletions
|
@ -77,7 +77,7 @@
|
|||
};
|
||||
opaque = {
|
||||
imageType = `2d;
|
||||
format = r8g8b8a8_unorm;
|
||||
format = r16g16b16a16_sfloat;
|
||||
samples = 1;
|
||||
extent = {
|
||||
width = $output.extent.width;
|
||||
|
|
Loading…
Reference in a new issue