Jump to page: 1 2
Thread overview
SDL2 texture blend help
Dec 11, 2017
Ivan Trombley
Dec 11, 2017
Mike Parker
Dec 11, 2017
Ivan Trombley
Dec 11, 2017
Dmitry
Dec 11, 2017
Dave Jones
Dec 12, 2017
Ivan Trombley
Dec 12, 2017
Dmitry
Dec 12, 2017
Ivan Trombley
Dec 12, 2017
Dmitry
Dec 12, 2017
Ivan Trombley
Dec 12, 2017
Ivan Trombley
Dec 13, 2017
Dmitry
Dec 13, 2017
Ivan Trombley
Dec 13, 2017
Ivan Trombley
Dec 13, 2017
Dmitry
Dec 13, 2017
Martin Drašar
Dec 13, 2017
Ivan Trombley
December 11, 2017
Experimenting with compositing images in SDL2, I get a dark edge around my textures. In the image below, you can see the top example where I composite the cyan image on top of the blue/magenta image looks correct but the bottom example, which is done using SDL_RenderCopy is not correct.

http://a4.pbase.com/o10/09/605909/1/166698494.lCoVTgcI.example.png

I tried premultiplying the the colors in the cyan image and setting the blend function as such...

  SDL_SetTextureBlendMode(texture, SDL_ComposeCustomBlendMode(
      SDL_BlendFactor.SDL_BLENDFACTOR_ONE,
      SDL_BlendFactor.SDL_BLENDFACTOR_ONE_MINUS_SRC_ALPHA,
      SDL_BlendOperation.SDL_BLENDOPERATION_ADD,
      SDL_BlendFactor.SDL_BLENDFACTOR_ONE,
      SDL_BlendFactor.SDL_BLENDFACTOR_ONE,
      SDL_BlendOperation.SDL_BLENDOPERATION_ADD));

...but that produces the exact same thing.


Any SDL experts out there that can give me a clue?

December 11, 2017
On Monday, 11 December 2017 at 04:57:44 UTC, Ivan Trombley wrote:
>
>
> Any SDL experts out there that can give me a clue?

I've used SDL quite a bit, but can't help with your specific problem. However, I suggest you try the new(ish) SDL forums for stuff like this. It's particularly off topic here.

https://discourse.libsdl.org
December 11, 2017
On Monday, 11 December 2017 at 07:04:19 UTC, Mike Parker wrote:
> On Monday, 11 December 2017 at 04:57:44 UTC, Ivan Trombley wrote:
>>
>>
>> Any SDL experts out there that can give me a clue?
>
> I've used SDL quite a bit, but can't help with your specific problem. However, I suggest you try the new(ish) SDL forums for stuff like this. It's particularly off topic here.
>
> https://discourse.libsdl.org

Thanks for the link.
December 11, 2017
On Monday, 11 December 2017 at 04:57:44 UTC, Ivan Trombley wrote:
> Experimenting with compositing images in SDL2, I get a dark edge around my textures. In the image below, you can see the top example where I composite the cyan image on top of the blue/magenta image looks correct but the bottom example, which is done using SDL_RenderCopy is not correct.

Won't this help?
https://stackoverflow.com/questions/45781683/how-to-get-correct-sourceover-alpha-compositing-in-sdl-with-opengl

December 11, 2017
On Monday, 11 December 2017 at 04:57:44 UTC, Ivan Trombley wrote:
> Experimenting with compositing images in SDL2, I get a dark edge around my textures. In the image below, you can see the top example where I composite the cyan image on top of the blue/magenta image looks correct but the bottom example, which is done using SDL_RenderCopy is not correct.
>
> http://a4.pbase.com/o10/09/605909/1/166698494.lCoVTgcI.example.png
>
> I tried premultiplying the the colors in the cyan image and setting the blend function as such...
>
>   SDL_SetTextureBlendMode(texture, SDL_ComposeCustomBlendMode(
>       SDL_BlendFactor.SDL_BLENDFACTOR_ONE,
>       SDL_BlendFactor.SDL_BLENDFACTOR_ONE_MINUS_SRC_ALPHA,
>       SDL_BlendOperation.SDL_BLENDOPERATION_ADD,
>       SDL_BlendFactor.SDL_BLENDFACTOR_ONE,
>       SDL_BlendFactor.SDL_BLENDFACTOR_ONE,
>       SDL_BlendOperation.SDL_BLENDOPERATION_ADD));
>
> ...but that produces the exact same thing.
>
>
> Any SDL experts out there that can give me a clue?

I dont know SDL but what your describing sounds like the cyan image already has premultiplied alpha and the blend operation is doubling down on that.

Have you tried the above blend op without premultiplying the cyan image?

December 12, 2017
It turns out that it's an issue with the color channels being in sRGB color space and the alpha channel being linear. I verified this by doing a software blend of the images and then doing another software blend using gamma corrected values.

There's a setting in opengl to correct for it, glEnable(GL_FRAMEBUFFER_SRGB), but I haven't tried this yet.
December 12, 2017
On Tuesday, 12 December 2017 at 03:32:05 UTC, Ivan Trombley wrote:
> It turns out that it's an issue with the color channels being in sRGB color space and the alpha channel being linear. I verified this by doing a software blend of the images and then doing another software blend using gamma corrected values.
>
> There's a setting in opengl to correct for it, glEnable(GL_FRAMEBUFFER_SRGB), but I haven't tried this yet.

BTW, also you could use bleeding (for example, https://github.com/dmi7ry/alpha-bleeding-d )
December 12, 2017
On Tuesday, 12 December 2017 at 03:34:51 UTC, Dmitry wrote:
> On Tuesday, 12 December 2017 at 03:32:05 UTC, Ivan Trombley wrote:
>> It turns out that it's an issue with the color channels being in sRGB color space and the alpha channel being linear. I verified this by doing a software blend of the images and then doing another software blend using gamma corrected values.
>>
>> There's a setting in opengl to correct for it, glEnable(GL_FRAMEBUFFER_SRGB), but I haven't tried this yet.
>
> BTW, also you could use bleeding (for example, https://github.com/dmi7ry/alpha-bleeding-d )

This isn't a scaling problem (which is totally solved by pre-multiplying the alpha with the colors BTW). This is a gamma correction problem which is solved only by converting the color values to linear color space before compositing and then converting the final pixel back to sRGB.

December 12, 2017
On Tuesday, 12 December 2017 at 06:27:30 UTC, Ivan Trombley wrote:
> This isn't a scaling problem (which is totally solved by
Scaling is not a prerequisite for this problem.

> pre-multiplying the alpha with the colors BTW). This is a gamma
How did you this? Using editor or using shader? If shder, show the code.
Can you share both images? I want to check.

> correction problem which is solved only by converting the color values to linear color space before compositing and then converting the final pixel back to sRGB.

Are you sure in that? Because what I see is typical alpha blending problem.

December 12, 2017
On Tuesday, 12 December 2017 at 07:12:07 UTC, Dmitry wrote:
> On Tuesday, 12 December 2017 at 06:27:30 UTC, Ivan Trombley wrote:
>> This isn't a scaling problem (which is totally solved by
> Scaling is not a prerequisite for this problem.
>
>> pre-multiplying the alpha with the colors BTW). This is a gamma
> How did you this? Using editor or using shader? If shder, show the code.
> Can you share both images? I want to check.
>
>> correction problem which is solved only by converting the color values to linear color space before compositing and then converting the final pixel back to sRGB.
>
> Are you sure in that? Because what I see is typical alpha blending problem.

Here's the code that produces the correct results (exactly the same as GIMP):


    auto bk =IMG_Load(toStringz(folder ~ "/background.png"));
    auto fg =IMG_Load(toStringz(folder ~ "/image.png"));
    enum c = (1.0f / 255.0f);
    enum g = 2.2f;
    enum ig = (1.0f / 2.2f);
    immutable int x = (bk.w - fg.w) / 2;
    immutable int y = (bk.h - fg.h) / 2;
    auto dst = cast(ubyte*) bk.pixels + y * bk.pitch + x * 3;
    immutable size_t add = bk.pitch - fg.w * 3;
    auto src = cast(ubyte*) fg.pixels;
    const auto max = src + fg.h * fg.pitch;
    while (src < max)
    {
      const auto line = dst + fg.w * 3;
      while (dst < line)
      {
        immutable float a = c * src[3];
        dst[0] = cast(ubyte)(((1 - a) * (dst[0] * c) ^^ g + a * (src[0] * c) ^^ g) ^^ ig * 255);
        dst[1] = cast(ubyte)(((1 - a) * (dst[1] * c) ^^ g + a * (src[1] * c) ^^ g) ^^ ig * 255);
        dst[2] = cast(ubyte)(((1 - a) * (dst[2] * c) ^^ g + a * (src[2] * c) ^^ g) ^^ ig * 255);
        src += 4;
        dst += 3;
      }
      dst += add;
    }

« First   ‹ Prev
1 2