]> git.ipfire.org Git - thirdparty/cups-filters.git/commitdiff
urftopdf: Removed last remainders of the removed filter
authorTill Kamppeter <till.kamppeter@gmail.com>
Mon, 8 Nov 2021 20:46:10 +0000 (21:46 +0100)
committerTill Kamppeter <till.kamppeter@gmail.com>
Mon, 8 Nov 2021 20:46:10 +0000 (21:46 +0100)
Removed filter/unirast.h

Removed entries in COPYING

COPYING
filter/unirast.h [deleted file]

diff --git a/COPYING b/COPYING
index 3428b76e276e4f5c88834e00b89a78a546368b6f..550e0c57233b230d348e7a7f4cbbac7e6542be78 100644 (file)
--- a/COPYING
+++ b/COPYING
@@ -218,15 +218,6 @@ Files: filter/texttops filter/imagetops filter/gstopxl filter/gstopdf
 Copyright: 2012 Till Kamppeter <till.kamppeter@gmail.com>
 License: GPL-2+
 
-Files: filter/unirast.h
-Copyright: 2010, Neil 'Superna' Armstrong <superna9999@gmail.com>
-License: GPL-3+
-
-Files: filter/urftopdf.cpp
-Copyright: 2010, Neil 'Superna' Armstrong <superna9999@gmail.com>
- 2012 Tobias Hoffmann <smilingthax@gmail.com>
-License: GPL-3+
-
 Files: fontembed/*
 Copyright: 2008,2012 Tobias Hoffmann
 License: Expat
diff --git a/filter/unirast.h b/filter/unirast.h
deleted file mode 100644 (file)
index c3f9633..0000000
+++ /dev/null
@@ -1,62 +0,0 @@
-/**
- * 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 3 of the License, 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 this program.  If not, see <http://www.gnu.org/licenses/>.
- *
- * @brief UNIRAST Defines
- * @file unirast.h
- * @author Neil 'Superna' Armstrong (c) 2010
- */
-
-#ifndef _UNIRAST_H_
-#define _UNIRAST_H_
-
-enum unirast_color_space_e
-{
-    // Grayscale
-    UNIRAST_COLOR_SPACE_GRAYSCALE_8BIT = 0,
-    UNIRAST_COLOR_SPACE_GRAYSCALE_32BIT = 4,
-
-    //RGB
-    UNIRAST_COLOR_SPACE_SRGB_24BIT_1 = 1,
-    UNIRAST_COLOR_SPACE_SRGB_24BIT_3 = 3,
-    UNIRAST_COLOR_SPACE_SRGB_24BIT_5 = 5,
-    UNIRAST_COLOR_SPACE_SRGB_32BIT = 2,
-
-    //CMYK
-    UNIRAST_COLOR_SPACE_CMYK_32BIT_64BIT = 6
-};
-
-enum unirast_duplex_mode_e
-{
-    UNIRAST_DUPLEX_MODE_0 = 0,
-    UNIRAST_DUPLEX_MODE_1 = 1,
-    UNIRAST_DUPLEX_MODE_2 = 2,
-    UNIRAST_DUPLEX_MODE_3 = 3
-};
-
-enum unirast_quality_e
-{
-    UNIRAST_QUALITY_3 = 3,
-    UNIRAST_QUALITY_4 = 4,
-    UNIRAST_QUALITY_5 = 5
-};
-
-enum unirast_bpp_e
-{
-    UNIRAST_BPP_8BIT = 8,
-    UNIRAST_BPP_24BIT = 24,
-    UNIRAST_BPP_32BIT = 32,
-    UNIRAST_BPP_64BIT = 64
-};
-
-#endif