tornavis/source/blender/gpu/shaders/gpu_shader_3D_image_vert.glsl

10 lines
216 B
GLSL

/* SPDX-FileCopyrightText: 2016-2022 Blender Authors
*
* SPDX-License-Identifier: GPL-2.0-or-later */
void main()
{
gl_Position = ModelViewProjectionMatrix * vec4(pos.xyz, 1.0f);
texCoord_interp = texCoord;
}