17 lines
543 B
GLSL
Executable file
17 lines
543 B
GLSL
Executable file
uniform sampler2DRect particles0;
|
|
uniform sampler2DRect particles1;
|
|
uniform sampler2DRect particles2;
|
|
|
|
uniform sampler2DRect u_depth;
|
|
uniform sampler2DRect u_world;
|
|
uniform sampler2DRect u_v4l2cam;
|
|
uniform sampler2DRect imageTexture;
|
|
|
|
in vec2 texCoordVarying;
|
|
|
|
void main()
|
|
{
|
|
fragColor = vec4(1);//vec4(texture(u_world, texCoordVarying.st).rgb,1);
|
|
// fragColor = vec4(texCoordVarying.st/100,1.0,1.0);//vec4(texture(u_world, texCoordVarying.st).rgb,1);
|
|
// fragColor = vec4(texture(imageTexture, texCoordVarying.st).rgb,1);
|
|
}
|