From 3744008d1fef08a7c666fcd36afbc5d0da348460 Mon Sep 17 00:00:00 2001 From: "Unknown W. Brackets" Date: Wed, 16 Mar 2016 23:32:48 -0700 Subject: [PATCH] Correct the 5551 format for now. Otherwise we get wrong colors - also we are still converting colors. --- GPU/Vulkan/TextureCacheVulkan.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GPU/Vulkan/TextureCacheVulkan.cpp b/GPU/Vulkan/TextureCacheVulkan.cpp index b19f921718..0cef7827de 100644 --- a/GPU/Vulkan/TextureCacheVulkan.cpp +++ b/GPU/Vulkan/TextureCacheVulkan.cpp @@ -68,7 +68,7 @@ // TODO: Except for color swizzle, exact matches are available. // So we can get rid of the conversion functions entirely. #define VULKAN_4444_FORMAT VK_FORMAT_R4G4B4A4_UNORM_PACK16 -#define VULKAN_1555_FORMAT VK_FORMAT_A1R5G5B5_UNORM_PACK16 // TODO: Switch to the one that matches the PSP better. +#define VULKAN_1555_FORMAT VK_FORMAT_R5G5B5A1_UNORM_PACK16 #define VULKAN_565_FORMAT VK_FORMAT_R5G6B5_UNORM_PACK16 #define VULKAN_8888_FORMAT VK_FORMAT_R8G8B8A8_UNORM