2013-05-18 09:17:30 +00:00
|
|
|
#!/usr/bin/perl
|
|
|
|
|
|
|
|
use strict;
|
|
|
|
use warnings;
|
2013-06-07 19:16:27 +00:00
|
|
|
use File::Spec;
|
2013-06-26 20:09:07 +00:00
|
|
|
use File::Basename;
|
|
|
|
use Cwd 'abs_path';
|
2013-05-18 09:17:30 +00:00
|
|
|
|
|
|
|
my @res = qw/convert interlace merge shadeboost tfx/;
|
2013-06-26 20:09:07 +00:00
|
|
|
my $path = File::Spec->catdir(dirname(abs_path($0)), "..", "plugins", "GSdx", "res");
|
2013-05-18 09:17:30 +00:00
|
|
|
|
|
|
|
foreach my $r (@res) {
|
2013-06-14 21:22:44 +00:00
|
|
|
glsl2h($path, $r, "glsl");
|
2013-05-18 09:17:30 +00:00
|
|
|
}
|
2013-06-14 21:22:44 +00:00
|
|
|
glsl2h($path, "fxaa", "fx");
|
2013-05-18 09:17:30 +00:00
|
|
|
|
|
|
|
sub glsl2h {
|
|
|
|
my $path = shift;
|
|
|
|
my $glsl = shift;
|
2013-06-14 21:22:44 +00:00
|
|
|
my $ext = shift;
|
2013-05-18 09:17:30 +00:00
|
|
|
|
2013-06-14 21:22:44 +00:00
|
|
|
my $in = File::Spec->catfile($path, "${glsl}.$ext");
|
2013-06-07 19:16:27 +00:00
|
|
|
my $out = File::Spec->catfile($path, "${glsl}.h");
|
|
|
|
open(my $GLSL, "<$in") or die;
|
|
|
|
open(my $H, ">$out") or die;
|
2013-05-18 09:17:30 +00:00
|
|
|
|
|
|
|
my $header = <<EOS;
|
|
|
|
/*
|
|
|
|
* Copyright (C) 2011-2013 Gregory hainaut
|
|
|
|
* Copyright (C) 2007-2009 Gabest
|
|
|
|
*
|
|
|
|
* This file was generated by glsl2h.pl script
|
|
|
|
*
|
|
|
|
* This Program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2, or (at your option)
|
|
|
|
* any later version.
|
|
|
|
*
|
|
|
|
* This Program 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 General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with GNU Make; see the file COPYING. If not, write to
|
|
|
|
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA USA.
|
|
|
|
* http://www.gnu.org/copyleft/gpl.html
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "stdafx.h"
|
|
|
|
|
2013-06-14 21:22:44 +00:00
|
|
|
static const char* ${glsl}_${ext} =
|
2013-05-18 09:17:30 +00:00
|
|
|
EOS
|
|
|
|
|
|
|
|
print $H $header;
|
|
|
|
|
|
|
|
my $line;
|
|
|
|
while(defined($line = <$GLSL>)) {
|
|
|
|
chomp $line;
|
|
|
|
$line =~ s/"/\\"/g;
|
|
|
|
print $H "\t\"$line\\n\"\n";
|
|
|
|
}
|
|
|
|
print $H "\t;\n";
|
|
|
|
}
|