mame/bgfx/effects/gui_opaque.json

24 lines
580 B
JSON
Raw Permalink Normal View History

2016-03-25 18:44:18 +01:00
// license:BSD-3-Clause
// copyright-holders:Ryan Holtz
//============================================================
//
// gui_opaque.json: Generic opaque shader for GUI elements.
//
//============================================================
2016-02-18 15:57:34 +01:00
{
"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 ] },
{ "name": "u_inv_view_dims", "type": "vec4", "values": [ 1.0, 1.0, 0.0, 0.0 ] }
]
}