Page 1 of 1

[0.4.4] [Blood] "Delirium Effect" blur is still missing

Posted: Thu Feb 13, 2020 5:55 am
by sinisterseed
Reminder that this has not been re-implemented yet.

Re: [0.4.4] [Blood] "Delirium Effect" blur is still missing

Posted: Thu Feb 13, 2020 6:00 am
by Graf Zahl
I know. ;)
This will require a postprocessing shader.

Re: [0.4.4] [Blood] "Delirium Effect" blur is still missing

Posted: Thu Feb 13, 2020 9:00 am
by Rachael
Graf Zahl wrote:This will require a postprocessing shader.
Is it even possible to write a blur shader without baking the GPU? None of mine have ever done it unless I sampled at really low resolutions and upsampled the result.

If not for this little issue I'd have happily done it myself.

Re: [0.4.4] [Blood] "Delirium Effect" blur is still missing

Posted: Thu Feb 13, 2020 11:43 am
by Graf Zahl
I think that's a question where only dpJudas may be able to give an answer.

Re: [0.4.4] [Blood] "Delirium Effect" blur is still missing

Posted: Thu Feb 13, 2020 12:34 pm
by dpJudas
The bloom effect is 8 blur shaders running in sequence. For a single blur effect you just need two runs (vertical + horizontal) with the gaussian blur shader used by the bloom pass.

Re: [0.4.4] [Blood] "Delirium Effect" blur is still missing

Posted: Thu Feb 13, 2020 12:52 pm
by Phredreeke
Another problem is that the speed of the delirium effect is tied to the framerate. I remember the first time I saw it in NBlood I thought it was unnaturally fast.

Re: [0.4.4] [Blood] "Delirium Effect" blur is still missing

Posted: Thu Feb 13, 2020 1:37 pm
by Rachael
I'll try it out and attempt to make something later on. Right now I have way too much going on.

Re: [0.4.4] [Blood] "Delirium Effect" blur is still missing

Posted: Sat Jul 24, 2021 12:02 am
by mjr4077au
@Rachael just wondering if this is something you ever got around to checking out? I know you're completely strapped for time but just thought I'd ask :)

Re: [0.4.4] [Blood] "Delirium Effect" blur is still missing

Posted: Sat Jul 24, 2021 12:21 am
by Rachael
I still haven't gotten around to this.

Re: [0.4.4] [Blood] "Delirium Effect" blur is still missing

Posted: Sat Jul 24, 2021 12:46 am
by mjr4077au
That's all good, thanks for the quick reply :)

Re: [0.4.4] [Blood] "Delirium Effect" blur is still missing

Posted: Fri Jul 30, 2021 1:10 am
by Talon1024
I came up with a post-processing shader which should approximate the desired blur effect:

Code: Select all

// #version 330 core
#define SHADERTOY
#ifdef SHADERTOY

#define INPUT_TEXTURE iChannel0
#define MOUSE_POS iMouse.xy
#define VIEW_RESOLUTION iResolution.xy
#define OUTPUT fragColor
#define TEXCOORD fragCoord/iResolution.xy
#define TIMER iTime

#else

#define INPUT_TEXTURE u_scene
#define MOUSE_POS u_mouse
#define VIEW_RESOLUTION u_resolution
#define OUTPUT gl_FragColor
#define TEXCOORD v_texcoord
#define TIMER u_time

uniform sampler2D INPUT_TEXTURE;
uniform vec2 VIEW_RESOLUTION;
uniform vec2 MOUSE_POS;
uniform float TIMER;

in vec2 TEXCOORD;

#endif

#define BLUR_SAMPLES 3
#define MAX_ROTATION .125
#define BLUR_MIX_FACTOR .25

#ifdef SHADERTOY
void mainImage(out vec4 fragColor, in vec2 fragCoord)
#else
void main()
#endif
{
    vec4 colour = texture(INPUT_TEXTURE, TEXCOORD);
    vec2 mousePos = MOUSE_POS / VIEW_RESOLUTION * 2. - 1.;
    /*
    float ef1 = min(v_texcoord.x, v_texcoord.y);
    float ef2 = 1 - max(v_texcoord.x, v_texcoord.y);
    float edgeFactor = min(ef1, ef2) * 2;
    */
    for (int i = BLUR_SAMPLES - 1; i >= 0; i--)
    {
        float th = mousePos.x * float(i + 1) * MAX_ROTATION;
        mat2 rotation = mat2(cos(th), sin(th), -sin(th), cos(th));
        vec2 rotUv = TEXCOORD;
        rotUv -= .5; // Set rotation pivot point
        rotUv = rotation * rotUv; // Rotate
        rotUv += .5; // Don't show the bottom of the screen
        vec4 blurred = texture(INPUT_TEXTURE, rotUv);
        colour = mix(colour, blurred, abs(sin(TIMER)) * BLUR_MIX_FACTOR);
    }
    OUTPUT = colour;
}
I developed it using ShaderToy and GLSLViewer. You can copy and paste the code into ShaderToy to see what it looks like. On a laptop with a crappy Intel integrated GPU, I get 60FPS on ShaderToy.

Re: [0.4.4] [Blood] "Delirium Effect" blur is still missing

Posted: Sun Nov 28, 2021 3:02 pm
by Graf Zahl
Closing because we got a duplicate on the Github issues.