about summary refs log tree commit diff stats
path: root/app/models
Commit message (Expand)AuthorAgeFilesLines
* Started game trackerKelly Rauchenberger2019-03-121-0/+13
* Add link entry typeKelly Rauchenberger2018-08-121-0/+15
* Added tagsKelly Rauchenberger2018-07-073-0/+16
* Abstracted Recordable concernKelly Rauchenberger2018-07-064-9/+14
* Blog drafts no longer require slugsKelly Rauchenberger2018-07-041-9/+9
* Added blog draftsKelly Rauchenberger2018-07-041-0/+21
* Implemented streamsKelly Rauchenberger2018-07-032-0/+25
* Collapsed Entry -> Blog single-table inheritance to BlogKelly Rauchenberger2018-07-032-13/+10
* Added pokeviewerKelly Rauchenberger2017-10-151-0/+2
* Created admin panelKelly Rauchenberger2017-07-024-1/+34
* Added logging in and logging outKelly Rauchenberger2017-06-251-0/+6
* Started designing index pageKelly Rauchenberger2017-06-253-0/+18
* Initial commitKelly Rauchenberger2017-06-242-0/+3
highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .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 */
#version 330 core

layout(location = 0) in vec3 vPos;

out vec2 UV;

void main()
{
  gl_Position = vec4(vPos, 1);
  UV = (vPos.xy + vec2(1,1))/2;
}