slang-shaders/bezel/Mega_Bezel/shaders/HyperspaceMadness/hsm-guest/hsm-afterglow0.slang
HyperspaceMadness f4c66450cf Mega Bezel update to V1.0.003_2022-07-28_Rev-1
* Updated to the latest guest release: crt-guest-advanced-2022-07-27-release1
  * Changed Guest mask size to 1 by default so that there isn't inconsistency using guest settings in the Mega Bezel
  * Adjusted the default SMOOTH-ADV scaling parameters for a sharper smooth look:
    * HSM_CORE_RES_SAMPLING_MULT_SCANLINE_DIR = 300
    * HSM_CORE_RES_SAMPLING_MULT_OPPOSITE_DIR = 125
    * HSM_DOWNSAMPLE_BLUR_SCANLINE_DIR = 0
    * HSM_DOWNSAMPLE_BLUR_OPPOSITE_DIR = 0
  * Added **Shift Sampling Relative to Scanlines** to shift the image relative to the scanlines
  * The ScaleFx settings now only appear on the SMOOTH-ADV preset nearer the bottom of the parameter list
  * Fixed Double image when using cropping in NTSC presets reported by @JHorbach1
  * Updated to crt-guest-advanced-2022-07-17-release1
    * Includes Scanline Gamma
  * Tube Gel and Diffuse Fixes
    * Gel is now mapped to the tube, independent of the black edge
    * Added a feature to add a bit of tube diffuse shading to the GEL this should make it look a little more natural
      * [ TUBE COLORED GEL IMAGE ] > Normal Multiply by Tube Diffuse Shading
    * HSM_TUBE_BLACK_EDGE_LAYERING_MODE has been removed as it's not needed anymore
    * CRT Multiply blend mode now works better when there is extra tube thickness
  * Changed HSM_TUBE_DIFFUSE_IMAGE_SCALE to 120 by default to have a less rounded look
    * If you want a stronger rounded shaded look reset it to 100
  * Fixed Scale discrepancy when using the Cab Glass Image
  * Added Shadow Opacity param to control shadow being applied to the static tube highlight
2022-07-28 21:56:28 -04:00

81 lines
2.5 KiB
Plaintext

#version 450
/*
Phosphor Afterglow Shader pass 0
Copyright (C) 2020 guest(r) - guest.r@gmail.com
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
layout(push_constant) uniform Push
{
float GDV_AFTERGLOW_THRESHOLD;
float PR, PG, PB;
} params;
#pragma parameter GDV_GDV_ADV_TITLE "[ --- GUEST-DrVenom Advanced --- ]:" 0.0 0.0 1.0 1.0
#pragma parameter bogus_afterglow "[ AFTERGLOW ]:" 0.0 0.0 1.0 1.0
#pragma parameter GDV_AFTERGLOW_THRESHOLD " Threshold ( Afterglow Appears Under Threshold )" 0.5 0.0 100 0.5
#pragma parameter PR " Persistence Red -- PR" 0.32 0.0 0.50 0.01
#pragma parameter PG " Persistence Green -- PG" 0.32 0.0 0.50 0.01
#pragma parameter PB " Persistence Blue -- PB" 0.32 0.0 0.50 0.01
#define GDV_AFTERGLOW_THRESHOLD params.GDV_AFTERGLOW_THRESHOLD / 100
#define PR params.PR
#define PG params.PG
#define PB params.PB
#define COMPAT_TEXTURE(c,d) texture(c,d)
layout(std140, set = 0, binding = 0) uniform UBO
{
mat4 MVP;
} global;
#pragma stage vertex
layout(location = 0) in vec4 Position;
layout(location = 1) in vec2 TexCoord;
layout(location = 0) out vec2 vTexCoord;
void main()
{
gl_Position = global.MVP * Position;
vTexCoord = TexCoord;
}
#pragma stage fragment
layout(location = 0) in vec2 vTexCoord;
layout(location = 0) out vec4 FragColor;
layout(set = 0, binding = 2) uniform sampler2D PreCRTPass;
layout(set = 0, binding = 3) uniform sampler2D AfterglowPassFeedback;
#define TEX0 vTexCoord
void main()
{
vec3 color = COMPAT_TEXTURE(PreCRTPass, TEX0.xy).rgb;
vec3 accumulate = COMPAT_TEXTURE(AfterglowPassFeedback, TEX0.xy).rgb;
float w = 1.0;
if ((color.r + color.g + color.b < 5.0/255.0)) { w = 0.0; }
vec3 result = mix( max(mix(color, accumulate, 0.49 + vec3(PR, PG, PB))- 3.0/255.0, 0.0), color, w);
FragColor = vec4(result, w);
}