Blender V2.61 - r43446
|
Go to the source code of this file.
Variables | |
const char * | DilationFragmentShader |
Definition in file RAS_Dilation2DFilter.h.
const char* DilationFragmentShader |
STRINGIFY( uniform sampler2D bgl_RenderedTexture; uniform vec2 bgl_TextureCoordinateOffset[9]; void main(void) { vec4 sample[9]; vec4 maxValue = vec4(0.0); for (int i = 0; i < 9; i++) { sample[i] = texture2D(bgl_RenderedTexture, gl_TexCoord[0].st + bgl_TextureCoordinateOffset[i]); maxValue = max(sample[i], maxValue); } gl_FragColor = maxValue; } )
Definition at line 35 of file RAS_Dilation2DFilter.h.