diff options
| author | 2016-05-27 14:45:28 +0200 | |
|---|---|---|
| committer | 2016-05-27 14:45:41 +0200 | |
| commit | f263110d939ef9a7aee97d655266498ab2339996 (patch) | |
| tree | f4ba27b676e1bca60b7624d4bb7aabb53e0b5f13 /bgfx/effects | |
| parent | db284904b23ab1d70139327ce8d77836f64ece92 (diff) | |
Fix crash when using pillarbox shaders, nw
Diffstat (limited to 'bgfx/effects')
4 files changed, 136 insertions, 0 deletions
diff --git a/bgfx/effects/pillarbox_left_horizontal/offset_sat.json b/bgfx/effects/pillarbox_left_horizontal/offset_sat.json new file mode 100644 index 00000000000..b68e91cb8bc --- /dev/null +++ b/bgfx/effects/pillarbox_left_horizontal/offset_sat.json @@ -0,0 +1,34 @@ +// license:BSD-3-Clause +// copyright-holders:Ryan Holtz +//============================================================ +// +// offset_sat.json: Applies saturation to an image. +// +// Additionally, takes only a portion of the image, as +// this instance is intended for the left-hand pillarbox +// when displaying 4:3 content on a 16:9 screen. +// +//============================================================ +{ + "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": "chains/pillarbox_left_horizontal/vs_offset_sat", + "fragment": "chains/pillarbox_left_horizontal/fs_offset_sat", + "uniforms": [ + { "name": "s_tex", "type": "int", "values": [ 1.0 ] }, + { "name": "u_saturation", "type": "vec4", "values": [ 1.0, 0.0, 0.0, 0.0 ] } + ] +}
\ No newline at end of file diff --git a/bgfx/effects/pillarbox_left_vertical/offset_sat.json b/bgfx/effects/pillarbox_left_vertical/offset_sat.json new file mode 100644 index 00000000000..521bcc88064 --- /dev/null +++ b/bgfx/effects/pillarbox_left_vertical/offset_sat.json @@ -0,0 +1,34 @@ +// license:BSD-3-Clause +// copyright-holders:Ryan Holtz +//============================================================ +// +// offset_sat.json: Applies saturation to an image. +// +// Additionally, takes only a portion of the image, as +// this instance is intended for the left-hand pillarbox +// when displaying 3:4 content on a 16:9 screen. +// +//============================================================ +{ + "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": "chains/pillarbox_left_vertical/vs_offset_sat", + "fragment": "chains/pillarbox_left_vertical/fs_offset_sat", + "uniforms": [ + { "name": "s_tex", "type": "int", "values": [ 1.0 ] }, + { "name": "u_saturation", "type": "vec4", "values": [ 1.0, 0.0, 0.0, 0.0 ] } + ] +}
\ No newline at end of file diff --git a/bgfx/effects/pillarbox_right_horizontal/offset_sat.json b/bgfx/effects/pillarbox_right_horizontal/offset_sat.json new file mode 100644 index 00000000000..019161b2cd8 --- /dev/null +++ b/bgfx/effects/pillarbox_right_horizontal/offset_sat.json @@ -0,0 +1,34 @@ +// license:BSD-3-Clause +// copyright-holders:Ryan Holtz +//============================================================ +// +// offset_sat.json: Applies saturation to an image. +// +// Additionally, takes only a portion of the image, as +// this instance is intended for the right-hand pillarbox +// when displaying 4:3 content on a 16:9 screen. +// +//============================================================ +{ + "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": "chains/pillarbox_right_horizontal/vs_offset_sat", + "fragment": "chains/pillarbox_right_horizontal/fs_offset_sat", + "uniforms": [ + { "name": "s_tex", "type": "int", "values": [ 1.0 ] }, + { "name": "u_saturation", "type": "vec4", "values": [ 1.0, 0.0, 0.0, 0.0 ] } + ] +}
\ No newline at end of file diff --git a/bgfx/effects/pillarbox_right_vertical/offset_sat.json b/bgfx/effects/pillarbox_right_vertical/offset_sat.json new file mode 100644 index 00000000000..66fab42c3e9 --- /dev/null +++ b/bgfx/effects/pillarbox_right_vertical/offset_sat.json @@ -0,0 +1,34 @@ +// license:BSD-3-Clause +// copyright-holders:Ryan Holtz +//============================================================ +// +// offset_sat.json: Applies saturation to an image. +// +// Additionally, takes only a portion of the image, as +// this instance is intended for the right-hand pillarbox +// when displaying 3:4 content on a 16:9 screen. +// +//============================================================ +{ + "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": "chains/pillarbox_right_vertical/vs_offset_sat", + "fragment": "chains/pillarbox_right_vertical/fs_offset_sat", + "uniforms": [ + { "name": "s_tex", "type": "int", "values": [ 1.0 ] }, + { "name": "u_saturation", "type": "vec4", "values": [ 1.0, 0.0, 0.0, 0.0 ] } + ] +}
\ No newline at end of file |
