early-access version 2115

This commit is contained in:
pineappleEA 2021-10-07 21:55:51 +02:00
parent 8154ff5225
commit 3f003b314e
2 changed files with 3 additions and 2 deletions

View file

@ -1,7 +1,7 @@
yuzu emulator early access yuzu emulator early access
============= =============
This is the source code for early-access 2114. This is the source code for early-access 2115.
## Legal Notice ## Legal Notice

View file

@ -34,7 +34,7 @@ enum class VideoPixelFormat : u64_le {
RGBX8 = 0x23, RGBX8 = 0x23,
Yuv420 = 0x44, Yuv420 = 0x44,
}; };
} // namespace } // Anonymous namespace
union VicConfig { union VicConfig {
u64_le raw{}; u64_le raw{};
@ -124,6 +124,7 @@ void Vic::WriteRGBFrame(const AVFrame* frame, const VicConfig& config) {
frame->height, target_format, 0, nullptr, nullptr, nullptr); frame->height, target_format, 0, nullptr, nullptr, nullptr);
scaler_width = frame->width; scaler_width = frame->width;
scaler_height = frame->height; scaler_height = frame->height;
converted_frame_buffer.reset();
} }
// Get Converted frame // Get Converted frame
const u32 width = static_cast<u32>(frame->width); const u32 width = static_cast<u32>(frame->width);