mirror of
https://github.com/PabloMK7/citra.git
synced 2025-09-10 21:00:06 +00:00
video_core: Add MMPX texture filter (#6564)
* video_core: Add MMPX texture shader * mmpx: Apply mix to mask alpha edge artifacting * mmpx: Do not use deprecated texture fuction.
This commit is contained in:
parent
b45c7188c7
commit
691e09473e
7 changed files with 160 additions and 1 deletions
|
@ -62,6 +62,8 @@ std::string_view GetTextureFilterName(TextureFilter filter) {
|
|||
return "ScaleForce";
|
||||
case TextureFilter::xBRZ:
|
||||
return "xBRZ";
|
||||
case TextureFilter::MMPX:
|
||||
return "MMPX";
|
||||
default:
|
||||
return "Invalid";
|
||||
}
|
||||
|
|
|
@ -74,6 +74,7 @@ enum class TextureFilter : u32 {
|
|||
NearestNeighbor = 3,
|
||||
ScaleForce = 4,
|
||||
xBRZ = 5,
|
||||
MMPX = 6
|
||||
};
|
||||
|
||||
namespace NativeButton {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue