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

30 lines
No EOL
701 B
JSON

// license:BSD-3-Clause
// copyright-holders:Ryan Holtz
//============================================================
//
// gui_blend.json: Generic modulate-blend shader for GUI
// elements.
//
//============================================================
{
"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_gui",
"fragment": "fs_gui",
"uniforms": [
{ "name": "s_tex", "type": "int", "values": [ 1.0 ] }
]
}