initial commit
using rltk
This commit is contained in:
parent
40a2ac07be
commit
d3a09df7a8
29 changed files with 3323 additions and 0 deletions
17
resources/console_with_bg.vs
Normal file
17
resources/console_with_bg.vs
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
#version 330 core
|
||||
layout (location = 0) in vec3 aPos;
|
||||
layout (location = 1) in vec3 aColor;
|
||||
layout (location = 2) in vec3 bColor;
|
||||
layout (location = 3) in vec2 aTexCoord;
|
||||
|
||||
out vec3 ourColor;
|
||||
out vec3 ourBackground;
|
||||
out vec2 TexCoord;
|
||||
|
||||
void main()
|
||||
{
|
||||
gl_Position = vec4(aPos, 1.0);
|
||||
ourColor = aColor;
|
||||
ourBackground = bColor;
|
||||
TexCoord = vec2(aTexCoord.x, aTexCoord.y);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue