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

edit_uv_image_vert.glsl « shaders « overlay « engines « draw « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7ecbb513265214051f749c51d14ac60588813cee (plain)
1
2
3
4
5
6
7
8
9
10
11
#pragma BLENDER_REQUIRE(common_view_lib.glsl)

void main()
{
  /* `pos` contains the coordinates of a quad (-1..1). but we need the coordinates of an image
   * plane (0..1) */
  vec3 image_pos = pos * 0.5 + 0.5;
  vec4 position = point_object_to_ndc(image_pos);
  gl_Position = position;
  uvs = image_pos.xy;
}