mame/bgfx/effects/screen_blend.json

34 lines
889 B
JSON
Raw Normal View History

2016-03-25 18:44:18 +01:00
// license:BSD-3-Clause
// copyright-holders:Ryan Holtz
//============================================================
//
// screen_blend.json: Shader used when drawing a final
// post-processed screen image to the output window with
// modulate blending.
//
//============================================================
2016-02-18 15:57:34 +01:00
{
"blend": {
"equation": "add",
"srcColor": "srcalpha",
"dstColor": "1-srcalpha",
"srcAlpha": "srcalpha",
"dstAlpha": "1-srcalpha"
},
"depth": {
"function": "always"
},
"cull": { "mode": "none" },
"write": {
"rgb": true,
"alpha": true
},
"vertex": "vs_screen",
"fragment": "fs_screen",
"uniforms": [
{ "name": "s_tex", "type": "int", "values": [ 1.0 ] },
{ "name": "u_tint", "type": "vec4", "values": [ 1.0, 1.0, 1.0, 1.0 ] },
{ "name": "u_inv_view_dims", "type": "vec4", "values": [ 1.0, 1.0, 0.0, 0.0 ] }
2016-02-18 15:57:34 +01:00
]
}