summaryrefslogtreecommitdiffstatshomepage
path: root/bgfx/chains/default.json
blob: 5df37df64c7eb14d5628ded6e8d2b2571cdd050c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{   "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"
		}
	]
}