diff options
author | 2016-04-24 20:36:42 +0200 | |
---|---|---|
committer | 2016-04-24 20:36:42 +0200 | |
commit | 07d8b25571860897fdad90c0c215b3e949f96ea9 (patch) | |
tree | ec378412f51fd296d87162871bdbdbe8926b9d71 /bgfx/effects/hlsl | |
parent | 29f51e85db4572febadf40956e2808f5444d2135 (diff) |
Added "selection" parameter to chain input sampler
- if specified all textures (.png) within the same directoy of the given texture will be selectable via slider in the UI
- also added slider for "shadow mask tile mode" to HLSL chain
Diffstat (limited to 'bgfx/effects/hlsl')
-rw-r--r-- | bgfx/effects/hlsl/post.json | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bgfx/effects/hlsl/post.json b/bgfx/effects/hlsl/post.json index a30e921e4c2..1fb934a36c7 100644 --- a/bgfx/effects/hlsl/post.json +++ b/bgfx/effects/hlsl/post.json @@ -35,6 +35,7 @@ { "name": "u_time", "type": "vec4", "values": [ 0.0, 0.0, 0.0, 0.0 ] }, { "name": "u_screen_scale", "type": "vec4", "values": [ 1.0, 1.0, 0.0, 0.0 ] }, { "name": "u_screen_offset", "type": "vec4", "values": [ 0.0, 0.0, 0.0, 0.0 ] }, + { "name": "u_shadow_tile_mode", "type": "vec4", "values": [ 0.0, 0.0, 0.0, 0.0 ] }, { "name": "u_scanline_alpha", "type": "vec4", "values": [ 0.0, 0.0, 0.0, 0.0 ] }, { "name": "u_scanline_scale", "type": "vec4", "values": [ 1.0, 0.0, 0.0, 0.0 ] }, { "name": "u_scanline_bright_scale", "type": "vec4", "values": [ 1.0, 0.0, 0.0, 0.0 ] }, |