require File.expand_path('../../config/environment', __FILE__) require 'rails/test_help' class ActiveSupport::TestCase # Setup all fixtures in test/fixtures/*.yml for all tests in alphabetical order. fixtures :all # Add more helper methods to be used by all tests here... end nk rel='vcs-git' href='https://git.fourisland.com/therapy' title='therapy Git repository'/>
summary refs log tree commit diff stats
path: root/shaders/fill.fragment
blob: ab7d9c9bc721b98431a50e150c2bd5bae8a688cf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#version 330 core

out vec3 color;

uniform vec3 vecColor;

void main()
{
  color = vecColor;
}