mirror of
https://github.com/mamedev/mame.git
synced 2024-11-16 07:48:32 +01:00
0c49c74ada
Made pbobble parent of bublbust, as it seems to be more widespread and more complete. Also fixed some ROM labels for bublbust. Made tbyahhoo parent of mtwinbee as the latter has substantial content removed rather than being localised, making it less complete. Applied srcclean to JSON files in bgfx subtree.
26 lines
505 B
JSON
26 lines
505 B
JSON
{ "name": "Default Nearest-Neighbor Filter",
|
|
"author": "Ryan Holtz",
|
|
"targets": [
|
|
{ "name": "temp",
|
|
"mode": "guest",
|
|
"bilinear": true
|
|
}
|
|
],
|
|
"passes": [
|
|
{ "effect": "misc/blit",
|
|
"applytint": true,
|
|
"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"
|
|
}
|
|
]
|
|
}
|