mame/bgfx/effects/gui_blend.json

30 lines
701 B
JSON
Raw Normal View History

2016-03-25 18:44:18 +01:00
// license:BSD-3-Clause
// copyright-holders:Ryan Holtz
//============================================================
//
// gui_blend.json: Generic modulate-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": "srcalpha",
"dstColor": "1-srcalpha",
"srcAlpha": "srcalpha",
"dstAlpha": "1-srcalpha"
2016-02-18 15:57:34 +01:00
},
"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 ] }
]
}