WIP
This commit is contained in:
parent
d735c1d076
commit
26a2935e1c
52 changed files with 1513 additions and 107 deletions
8
Source/Resources/GL/WaveForm.fragment.glsl
Normal file
8
Source/Resources/GL/WaveForm.fragment.glsl
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
#version 330 core
|
||||
in vec4 newColor;
|
||||
|
||||
out vec4 fragColor;
|
||||
void main()
|
||||
{
|
||||
fragColor = newColor;
|
||||
}
|
||||
10
Source/Resources/GL/WaveForm.vertex.glsl
Normal file
10
Source/Resources/GL/WaveForm.vertex.glsl
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
#version 330 core
|
||||
in vec4 position;
|
||||
uniform vec4 color = vec4(1f, 1f, 1f, 1f);
|
||||
|
||||
out vec4 newColor;
|
||||
void main()
|
||||
{
|
||||
gl_Position = position;
|
||||
newColor = color;
|
||||
}
|
||||
BIN
Source/Resources/arvo.ttf
Normal file
BIN
Source/Resources/arvo.ttf
Normal file
Binary file not shown.
BIN
Source/Resources/lcd.ttf
Normal file
BIN
Source/Resources/lcd.ttf
Normal file
Binary file not shown.
Loading…
Add table
Add a link
Reference in a new issue