early-access version 2115

main
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
=============
This is the source code for early-access 2114.
This is the source code for early-access 2115.
## Legal Notice

View File

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