mame/bgfx/effects/gui_multiply.json

30 lines
692 B
JSON
Raw Normal View History

2016-03-25 18:44:18 +01:00
// license:BSD-3-Clause
// copyright-holders:Ryan Holtz
//============================================================
//
// gui_multiply.json: Generic multiplicative blend shader
// for GUI elements.
//
//============================================================
2016-02-18 15:57:34 +01:00
{
"blend": {
"equation": "add",
2016-03-25 18:44:18 +01:00
"srcColor": "dstcolor",
2016-02-18 15:57:34 +01:00
"dstColor": "0",
2016-03-25 18:44:18 +01:00
"srcAlpha": "dstalpha",
2016-02-18 15:57:34 +01:00
"dstAlpha": "0"
},
"depth": {
"function": "always"
},
"cull": { "mode": "none" },
"write": {
2016-03-25 18:44:18 +01:00
"rgb": true,
"alpha": true
2016-02-18 15:57:34 +01:00
},
"vertex": "vs_gui",
"fragment": "fs_gui",
"uniforms": [
{ "name": "s_tex", "type": "int", "values": [ 1.0 ] }
]
}