SFML community forums

Help => Graphics => Topic started by: SuperNova on October 05, 2016, 11:18:15 pm

Title: Rendering a sf::Sprite using a shader results in an inverted Y-axis?
Post by: SuperNova on October 05, 2016, 11:18:15 pm
I've recently been toying around with Shaders and I found out that, unless I use a sf::RenderTexture, the displayed result is always Y-Inverted.

// General parameters
uniform sampler2D tex0;
uniform sampler2D tex1;
uniform float time;
uniform vec2 resolution;
 
const vec2 center = vec2(0.5, 0.5);

float quadraticInOut(float t) {
  float p = 2.0 * t * t;
  return t < 0.5 ? p : -p + (4.0 * t) - 1.0;
}

float rand(vec2 co) {
  return fract(sin(dot(co.xy ,vec2(12.9898,78.233))) * 43758.5453);
}

void main() {
  vec2 p = gl_FragCoord.xy / resolution.xy;
 
  if (time == 0.0) {
    gl_FragColor = texture2D(tex0, p);
  } else if (time == 1.0) {
    gl_FragColor = texture2D(tex1, p);
  } else {
    float x = time;
    float dist = distance(center, p);
    float r = x - min(rand(vec2(p.y, 0.0)), rand(vec2(0.0, p.x)));
    float m = dist <= r ? 1.0 : 0.0;
    gl_FragColor = mix(texture2D(tex0, p), texture2D(tex1, p), m);    
  }
 
}

A simple shader like this one, only a fragment shader might I add, is always upside down.

Is there something I'm missing?  ???
I'm quite new to shaders so keep that in mind.
Title: Re: Rendering a sf::Sprite using a shader results in an inverted Y-axis?
Post by: DarkRoku12 on October 06, 2016, 12:00:36 am
Hope  this answer (http://stackoverflow.com/a/33284057) helps you a bit.

But if i remeber well you need to flip the Y axis.
Title: Re: Rendering a sf::Sprite using a shader results in an inverted Y-axis?
Post by: Hapax on October 06, 2016, 12:47:41 am
The reason for this is that SFML uses positive y for down (top is zero) whereas OpenGL uses positive y for up (bottom is zero).
Title: Re: Rendering a sf::Sprite using a shader results in an inverted Y-axis?
Post by: dabbertorres on October 06, 2016, 03:30:22 am
OpenGL's "bottom" is -1 actually, center is 0.
Title: Re: Rendering a sf::Sprite using a shader results in an inverted Y-axis?
Post by: Hapax on October 10, 2016, 08:24:50 am
OpenGL's "bottom" is -1 actually, center is 0.
In the scene/view co-ordinate system, sure, but the fragment co-ordinates (the shader is a fragment shader) start from the bottom-left, not the centre.
Title: Re: Rendering a sf::Sprite using a shader results in an inverted Y-axis?
Post by: dabbertorres on October 11, 2016, 10:31:43 pm
Oh that's right, my bad.

I tend to set pixel_center_integer (https://www.opengl.org/sdk/docs/man/html/gl_FragCoord.xhtml) so it's uniform across the API.