summaryrefslogtreecommitdiffstatshomepage
path: root/bgfx/chains/unfiltered.json
blob: 467b5cd67f4c332323490abf4a81f445e25dfb56 (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
27
28
29
{	"name": "Default Nearest-Neighbor Filter",
	"author": "Ryan Holtz",
	"targets": [
		{	"name": "temp",
			"mode": "guest",
			"bilinear": true
		},
		{	"name": "screen",
			"mode": "native"
		}
	],
	"passes": [
		{	"effect": "blit",
			"name": "Copy To Unstretched Texture",
			"input": [
				{ "sampler": "s_tex", "texture": "screen" }
			],
			"output": "temp"
		},
		{	"effect": "blit",
			"name": "Final Upscale",
			"input": [
				{ "sampler": "s_tex", "texture": "temp" }
			],
			"output": "screen"
		}
	],
	"output": "screen"
}