mame/bgfx/effects/gui_multiply.json
2016-03-25 18:44:46 +01:00

30 lines
No EOL
692 B
JSON

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