renderer_vulkan: fix cropping for presentation

This commit is contained in:
Liam 2023-10-27 23:48:55 -04:00
parent 43be2bfe33
commit 65d4a16afd
2 changed files with 55 additions and 44 deletions

View file

@ -3,6 +3,7 @@
#pragma once
#include "common/common_funcs.h"
#include "common/common_types.h"
namespace Service::android {
@ -21,5 +22,6 @@ enum class BufferTransformFlags : u32 {
/// Rotate source image 270 degrees clockwise
Rotate270 = 0x07,
};
DECLARE_ENUM_FLAG_OPERATORS(BufferTransformFlags);
} // namespace Service::android