mame/bgfx/chains/default.json

27 lines
509 B
JSON
Raw Normal View History

{ "name": "Default Nearest-Neighbor Filter",
"author": "Ryan Holtz",
"targets": [
{ "name": "temp",
"mode": "guest",
"bilinear": true,
"user_prescale": 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" }
],
2016-03-21 03:43:02 +01:00
"output": "output"
}
2016-03-21 03:43:02 +01:00
]
}