[submodule "vendor/verbly"] path = vendor/verbly url = https://github.com/hatkirby/verbly [submodule "vendor/yaml-cpp"] path = vendor/yaml-cpp url = https://github.com/jbeder/yaml-cpp [submodule "vendor/libtwittercpp"] path = vendor/libtwittercpp url = https://github.com/hatkirby/libtwittercpp 'https://git.fourisland.com/therapy' title='therapy Git repository'/>
summary refs log tree commit diff stats
path: root/shaders/fill.fragment
blob: 81443c4d57d294d1129752017ffaff20a828d6d2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#version 330 core

out vec4 color;

uniform vec3 vecColor;

void main()
{
  color = vec4(vecColor, 1.0);
}