I want to use texOffset in order to loop over some pixels.
In my vertex shader I added:
out vec2 texOffset;
And in the fragment shader I added:
in vec2 texOffset;
And I try to use it with:
float xInc = texOffset.x;
But since I added those lines the shader won't compile anymore due an Unknow error.