blob: 61269a9dfb2668eed7754b9a129998eda039c575 [file] [log] [blame]
layout(location=0) out float defaultVarying;
layout(location=1) out noperspective float linearVarying;
layout(location=2) out flat float flatVarying;
void main() {
defaultVarying = 1.0;
linearVarying = 2.0;
flatVarying = 3.0;
}