Welcome to mirror list, hosted at ThFree Co, Russian Federation.

compositor_image_crop.glsl « shaders « realtime_compositor « compositor « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f20e033dee4f3156d93b009a9790a7129e492124 (plain)
1
2
3
4
5
6
7
#pragma BLENDER_REQUIRE(gpu_shader_compositor_texture_utilities.glsl)

void main()
{
  ivec2 texel = ivec2(gl_GlobalInvocationID.xy);
  imageStore(output_img, texel, texture_load(input_tx, texel + lower_bound));
}