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;
}
bal */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
module Recordable
  extend ActiveSupport::Concern

  included do
    has_many :records, as: :recordable, inverse_of: :recordable

    accepts_nested_attributes_for :records, allow_destroy: true
  end
end