Update Inc.hx

This commit is contained in:
onelsonic 2021-07-18 15:07:46 +02:00 committed by GitHub
parent fda2ac8505
commit 14f82e727f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -369,7 +369,7 @@ class Inc {
t.width = 0;
t.height = 0;
t.displayp = getDisplayp();
t.format = "RGBA48";
t.format = "RGBA64";
t.scale = getSuperSampling();
t.depth_buffer = "main";
path.createRenderTarget(t);
@ -524,7 +524,7 @@ class Inc {
public static inline function getHdrFormat(): String {
#if rp_hdr
return "RGBA48";
return "RGBA64";
#else
return "RGBA32";
#end