summaryrefslogtreecommitdiff
path: root/src/video_core/surface.h
diff options
context:
space:
mode:
authorReinUsesLisp <reinuseslisp@airmail.cc>2019-09-13 00:17:26 -0300
committerReinUsesLisp <reinuseslisp@airmail.cc>2019-09-13 00:27:04 -0300
commit99e23bd0fdb705903f83e7cd5bb4222a2ce5c542 (patch)
treec87bb539ac697b54dfe78e8aa2dda8aa3171b4fb /src/video_core/surface.h
parent34b2c60f95c964354f00546385684fc9c8726d76 (diff)
video_core/surface: Add function to detect sRGB surfaces
This is required for proper conversion to RGBA8_UNORM or RGBA8_SRGB surfaces when a backend can target both native and converted ASTC.
Diffstat (limited to 'src/video_core/surface.h')
-rw-r--r--src/video_core/surface.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/video_core/surface.h b/src/video_core/surface.h
index 83f31c12c..19268b7cd 100644
--- a/src/video_core/surface.h
+++ b/src/video_core/surface.h
@@ -547,6 +547,8 @@ SurfaceType GetFormatType(PixelFormat pixel_format);
bool IsPixelFormatASTC(PixelFormat format);
+bool IsPixelFormatSRGB(PixelFormat format);
+
std::pair<u32, u32> GetASTCBlockSize(PixelFormat format);
/// Returns true if the specified PixelFormat is a BCn format, e.g. DXT or DXN