mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-05 23:58:59 +00:00
Software Backend: Fix xfb output and add vertical scaling support
This commit is contained in:
parent
e6d85b0915
commit
6e686f6ea1
14 changed files with 179 additions and 117 deletions
|
@ -5,8 +5,13 @@
|
|||
#pragma once
|
||||
|
||||
#include "Common/CommonTypes.h"
|
||||
#include "VideoCommon/VideoCommon.h"
|
||||
|
||||
struct EFBCopyParams;
|
||||
|
||||
namespace TextureEncoder
|
||||
{
|
||||
void Encode(u8* dest_ptr);
|
||||
void Encode(u8* dst, const EFBCopyParams& params, u32 native_width, u32 bytes_per_row,
|
||||
u32 num_blocks_y, u32 memory_stride, const EFBRectangle& src_rect,
|
||||
bool scale_by_half);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue