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

patch-input-array.tese « tese « shaders « opt « reference - github.com/KhronosGroup/SPIRV-Cross.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 413d8b391fb62e44ed93742d4c5aaf352a232574 (plain)
1
2
3
4
5
6
7
8
9
10
#version 450
layout(quads, ccw, equal_spacing) in;

layout(location = 0) patch in float P[4];

void main()
{
    gl_Position = vec4(P[0], P[1], P[2], P[3]);
}