This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Texture mixing using GLSL makes strange result in Galaxy-S8(Mali G71)

Hello, I'm making a simple image filter app using OpenGL ES

What I'm currently working on is implementing Lowpass filter in GPUImage(https://github.com/BradLarson/GPUImage/blob/master/framework/Source/GPUImageLowPassFilter.h)

it basically mixs the previously mixed camera texture and current camera image.

I tested my code with several other smartphones(Galaxy S10, Nexus 6P and etc) and it worked well, however on Galaxy S8 it gives the strange result like below picture.

My shader codes are following:

Vshader

uniform mat4 uOrientationM;
uniform mat4 uTransformM;
attribute vec2 aPosition;
varying vec2 vTextureCoord;

void main() {
gl_Position = uOrientationM * vec4(aPosition, 0.0, 1.0);
vTextureCoord = (uTransformM * vec4((aPosition + 1.0)*0.5, 0.0, 1.0)).xy;
}

Fshader

varying vec2 vTextureCoord;
uniform sampler2D sTexture1;
uniform float filterStrength;

void main() {
vec4 texColor0 = texture2D(sTexture, vTextureCoord);
vec4 texColor1 = texture2D(sTexture1, vTextureCoord);
gl_FragColor = mix(texColor0, texColor1, filterStrength);
}

Is there anything wrong? or what can be a cause for this?

Thanks in advance.