Implement RGB565 Framebuffer format

This commit is contained in:
greggameplayer
2019-01-12 16:45:18 +01:00
parent f6e998f6ad
commit 865387f3c3
5 changed files with 28 additions and 17 deletions

View File

@@ -80,6 +80,7 @@ class DebugContext;
struct FramebufferConfig {
enum class PixelFormat : u32 {
ABGR8 = 1,
RGB565 = 4,
BGRA8 = 5,
};