Moved shaders to new directory
This commit is contained in:
parent
0b3f8340e3
commit
99b226237a
1244 changed files with 0 additions and 0 deletions
19
shaders/glsl/meshshader/meshshader.frag
Normal file
19
shaders/glsl/meshshader/meshshader.frag
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
/* Copyright (c) 2021, Sascha Willems
|
||||
*
|
||||
* SPDX-License-Identifier: MIT
|
||||
*
|
||||
*/
|
||||
|
||||
#version 450
|
||||
|
||||
layout (location = 0) in VertexInput {
|
||||
vec4 color;
|
||||
} vertexInput;
|
||||
|
||||
layout(location = 0) out vec4 outFragColor;
|
||||
|
||||
|
||||
void main()
|
||||
{
|
||||
outFragColor = vertexInput.color;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue