mirror of
https://github.com/holub/mame
synced 2025-04-22 16:31:49 +03:00
25 lines
474 B
JSON
25 lines
474 B
JSON
{ "name": "Default Nearest-Neighbor Filter",
|
|
"author": "Ryan Holtz",
|
|
"targets": [
|
|
{ "name": "temp",
|
|
"mode": "guest",
|
|
"bilinear": true
|
|
}
|
|
],
|
|
"passes": [
|
|
{ "effect": "misc/blit",
|
|
"name": "Copy To Filtered Texture",
|
|
"input": [
|
|
{ "sampler": "s_tex", "texture": "screen" }
|
|
],
|
|
"output": "temp"
|
|
},
|
|
{ "effect": "misc/blit",
|
|
"name": "Final Upscale",
|
|
"input": [
|
|
{ "sampler": "s_tex", "target": "temp" }
|
|
],
|
|
"output": "output"
|
|
}
|
|
]
|
|
} |