LibCarna Version 3.4.0
Loading...
Searching...
No Matches
mr-edgedetect.vert
1#version 330
2
3/*
4 * Copyright (C) 2010 - 2016 Leonid Kostrykin
5 *
6 * Chair of Medical Engineering (mediTEC)
7 * RWTH Aachen University
8 * Pauwelsstr. 20
9 * 52074 Aachen
10 * Germany
11 *
12 *
13 * Copyright (C) 2021 - 2025 Leonid Kostrykin
14 *
15 */
16
17layout( location = 0 ) in vec4 inPosition;
18
19out vec2 textureCoordinates;
20
21
22// ----------------------------------------------------------------------------------
23// Vertex Procedure
24// ----------------------------------------------------------------------------------
25
26void main()
27{
28 textureCoordinates = ( inPosition.xy + 1 ) / 2;
29 gl_Position = inPosition;
30}