Integrate templates project
This commit is contained in:
parent
3a5d4b9756
commit
76f5246814
55 changed files with 11946 additions and 144 deletions
templates/src/music/features/visualizer/shaders
|
@ -0,0 +1,12 @@
|
|||
#version 300 es
|
||||
// FRAGMENT SHADER
|
||||
//
|
||||
// Basic fragment shader, just passes along colors, we don't do much
|
||||
// with textures or anything else complex in this project.
|
||||
|
||||
precision highp float;
|
||||
|
||||
flat in vec4 vColor;
|
||||
out vec4 color;
|
||||
|
||||
void main() { color = vColor; }
|
Loading…
Add table
Add a link
Reference in a new issue