mame/bgfx/chains/unfiltered.json
2016-03-29 01:56:37 +02:00

25 lines
490 B
JSON

{ "name": "Default Nearest-Neighbor Filter",
"author": "Ryan Holtz",
"targets": [
{ "name": "temp",
"mode": "guest",
"bilinear": false
}
],
"passes": [
{ "effect": "unfiltered/blit",
"name": "Copy To Unstretched Texture",
"input": [
{ "sampler": "s_tex", "texture": "screen" }
],
"output": "temp"
},
{ "effect": "unfiltered/blit",
"name": "Final Upscale",
"input": [
{ "sampler": "s_tex", "target": "temp" }
],
"output": "output"
}
]
}