nuclear@12: /* nuclear@12: Printblobs - typography display hack nuclear@12: Copyright (C) 2013 John Tsiombikas nuclear@12: nuclear@12: This program is free software: you can redistribute it and/or modify nuclear@12: it under the terms of the GNU General Public License as published by nuclear@12: the Free Software Foundation, either version 3 of the License, or nuclear@12: (at your option) any later version. nuclear@12: nuclear@12: This program is distributed in the hope that it will be useful, nuclear@12: but WITHOUT ANY WARRANTY; without even the implied warranty of nuclear@12: MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the nuclear@12: GNU General Public License for more details. nuclear@12: nuclear@12: You should have received a copy of the GNU General Public License nuclear@12: along with this program. If not, see . nuclear@12: */ nuclear@7: varying vec3 normal, vpos; nuclear@7: nuclear@7: void main() nuclear@7: { nuclear@7: gl_Position = ftransform(); nuclear@7: vpos = (gl_ModelViewMatrix * gl_Vertex).xyz; nuclear@7: normal = gl_NormalMatrix * gl_Normal; nuclear@7: nuclear@7: gl_TexCoord[0] = gl_MultiTexCoord0; nuclear@7: }