10 lines
206 B
GLSL
10 lines
206 B
GLSL
#version 430 core
|
|
#extension GL_ARB_enhanced_layouts : require
|
|
|
|
|
|
layout (location = 1, component = 0) in smooth float in1;
|
|
layout (location = 1, component = 2) in flat float in2;
|
|
|
|
void main()
|
|
{
|
|
} |