2008-05-27 13:42:50 -04:00
|
|
|
#! /bin/sh
|
|
|
|
|
2009-04-27 10:48:12 -04:00
|
|
|
# Cogl
|
|
|
|
#
|
|
|
|
# An object oriented GL/GLES Abstraction/Utility Layer
|
|
|
|
#
|
|
|
|
# Copyright (C) 2008,2009 Intel Corporation.
|
|
|
|
#
|
|
|
|
# This library is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU Lesser General Public
|
|
|
|
# License as published by the Free Software Foundation; either
|
|
|
|
# version 2 of the License, or (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This library is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
# Lesser General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU Lesser General Public
|
|
|
|
# License along with this library; if not, write to the
|
|
|
|
# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
# Boston, MA 02111-1307, USA.
|
|
|
|
|
|
|
|
|
2008-05-27 13:42:50 -04:00
|
|
|
output_copyright ()
|
|
|
|
{
|
2009-08-19 10:38:25 -04:00
|
|
|
cat <<EOF
|
2008-05-27 13:42:50 -04:00
|
|
|
/*
|
2009-04-27 10:48:12 -04:00
|
|
|
* Cogl
|
2008-05-27 13:42:50 -04:00
|
|
|
*
|
2009-04-27 10:48:12 -04:00
|
|
|
* An object oriented GL/GLES Abstraction/Utility Layer
|
2008-05-27 13:42:50 -04:00
|
|
|
*
|
2009-04-27 10:48:12 -04:00
|
|
|
* Copyright (C) 2008,2009 Intel Corporation.
|
2008-05-27 13:42:50 -04:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
EOF
|
|
|
|
}
|
|
|
|
|
|
|
|
# If two arguments are given then generate the header file instead
|
|
|
|
if test "$#" = 2; then
|
2009-08-19 10:38:25 -04:00
|
|
|
bfname="${2%.glsl}"
|
|
|
|
bname=`basename "$bfname"`
|
|
|
|
varname=`echo -n "${bname}" | tr -c a-z _`
|
|
|
|
guardname=`echo -n "${varname}" | tr a-z A-Z`
|
|
|
|
guardname="__${guardname}_H"
|
2008-05-27 13:42:50 -04:00
|
|
|
|
2009-08-19 10:38:25 -04:00
|
|
|
output_copyright
|
|
|
|
echo
|
|
|
|
echo "#ifndef ${guardname}"
|
|
|
|
echo "#define ${guardname}"
|
|
|
|
echo
|
2008-06-24 12:21:40 -04:00
|
|
|
|
|
|
|
sed -n \
|
|
|
|
-e 's/^ *\/\*\*\* \([a-zA-Z0-9_]*\) \*\*\*\//extern const char \1[];/p' \
|
2009-08-19 10:38:25 -04:00
|
|
|
< "$2"
|
2008-06-24 12:21:40 -04:00
|
|
|
|
2009-08-19 10:38:25 -04:00
|
|
|
echo
|
|
|
|
echo "#endif /* ${guardname} */"
|
2008-05-27 13:42:50 -04:00
|
|
|
|
|
|
|
else
|
|
|
|
|
|
|
|
bfname="${1%.glsl}";
|
|
|
|
bname=`basename "${bfname}"`;
|
|
|
|
varname=`echo -n "${bname}" | tr -c a-z _`;
|
|
|
|
|
2009-08-19 10:38:25 -04:00
|
|
|
output_copyright
|
|
|
|
echo
|
2008-06-24 12:21:40 -04:00
|
|
|
sed -n \
|
|
|
|
-e h \
|
|
|
|
-e 's/^ *\/\*\*\* \([a-zA-Z0-9_]*\) \*\*\*\// ;\nconst char \1[] =/' \
|
|
|
|
-e 't got' \
|
|
|
|
-e g \
|
|
|
|
-e 's/"/\\"/' \
|
|
|
|
-e 's/^/ "/' \
|
|
|
|
-e 's/$/\\n"/' \
|
|
|
|
-e ': got' \
|
|
|
|
-e p \
|
2009-08-19 10:38:25 -04:00
|
|
|
< "$1"
|
|
|
|
echo " ;"
|
|
|
|
fi
|