mirror of https://github.com/PCSX2/pcsx2.git
zzogl-pg: Update license
* zpipe.cpp is based on a public-domain example * zpipe.h trivial file, I change the license to gpl git-svn-id: http://pcsx2.googlecode.com/svn/trunk@3908 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
31ab78588a
commit
b00c7da0fb
|
@ -155,9 +155,11 @@ License: BSD (3 clause)
|
|||
OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
SUCH DAMAGE.
|
||||
|
||||
Files: plugins/zzogl-pg/opengl/ZeroGSShaders/* plugins/zzogl-pg/opengl/zpipe*
|
||||
Copyright: Unknown
|
||||
Files: plugins/zzogl-pg/opengl/zpipe.cpp
|
||||
Copyright: public domain
|
||||
|
||||
Files: plugins/zzogl-pg/opengl/ZeroGSShaders/zerogsshaders*
|
||||
Copyright: Unknown
|
||||
|
||||
The Debian packaging is:
|
||||
|
||||
|
|
|
@ -155,9 +155,11 @@ License: BSD (3 clause)
|
|||
OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
SUCH DAMAGE.
|
||||
|
||||
Files: plugins/zzogl-pg/opengl/ZeroGSShaders/* plugins/zzogl-pg/opengl/zpipe*
|
||||
Copyright: Unknown
|
||||
Files: plugins/zzogl-pg/opengl/zpipe.cpp
|
||||
Copyright: public domain
|
||||
|
||||
Files: plugins/zzogl-pg/opengl/ZeroGSShaders/zerogsshaders*
|
||||
Copyright: Unknown
|
||||
|
||||
The Debian packaging is:
|
||||
|
||||
|
|
|
@ -1,10 +1,9 @@
|
|||
/* ZeroGS KOSMOS
|
||||
*
|
||||
* Zerofrog's ZeroGS KOSMOS (c)2005-2008
|
||||
*
|
||||
* Zerofrog forgot to write any copyright notice after release the plugin into GPLv2
|
||||
* If someone can contact him successfully to clarify this matter that would be great.
|
||||
*/
|
||||
/* The file is based of zpipe.c + minor rename and minor adaptation
|
||||
*
|
||||
* zpipe.c: example of proper use of zlib's inflate() and deflate()
|
||||
* Not copyrighted -- provided to the public domain
|
||||
* Version 1.4 11 December 2005 Mark Adler
|
||||
*/
|
||||
|
||||
// zpipe.cpp : Defines the entry point for the console application.
|
||||
//
|
||||
|
|
|
@ -1,10 +1,21 @@
|
|||
/* ZeroGS KOSMOS
|
||||
*
|
||||
* Zerofrog's ZeroGS KOSMOS (c)2005-2008
|
||||
*
|
||||
* Zerofrog forgot to write any copyright notice after release the plugin into GPLv2
|
||||
* If someone can contact him successfully to clarify this matter that would be great.
|
||||
*/
|
||||
/* ZZ Open GL graphics plugin
|
||||
* Copyright (c)2009-2010 zeydlitz@gmail.com, arcum42@gmail.com
|
||||
* Based on Zerofrog's ZeroGS KOSMOS (c)2005-2008
|
||||
*
|
||||
* 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 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, write to the Free Software
|
||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
||||
*/
|
||||
|
||||
#ifndef zpipe_h
|
||||
#define zpipe_h
|
||||
|
|
|
@ -1,13 +1,9 @@
|
|||
/* ZeroGS KOSMOS
|
||||
*
|
||||
* Zerofrog's ZeroGS KOSMOS (c)2005-2008
|
||||
*
|
||||
* Zerofrog forgot to write any copyright notice after release the plugin into GPLv2
|
||||
* If someone can contact him successfully to clarify this matter that would be great.
|
||||
*/
|
||||
|
||||
// zpipe.cpp : Defines the entry point for the console application.
|
||||
//
|
||||
/* The file is based of zpipe.c + minor rename and minor adaptation
|
||||
*
|
||||
* zpipe.c: example of proper use of zlib's inflate() and deflate()
|
||||
* Not copyrighted -- provided to the public domain
|
||||
* Version 1.4 11 December 2005 Mark Adler
|
||||
*/
|
||||
|
||||
#include <iostream>
|
||||
|
||||
|
@ -18,14 +14,11 @@
|
|||
//#define ZLIB_WINAPI
|
||||
#include "zlib.h"
|
||||
|
||||
int def(char *src, char *dst, int bytes_to_compress, int *bytes_after_compressed) ;
|
||||
int inf(char *src, char *dst, int bytes_to_decompress, int maximum_after_decompress) ;
|
||||
|
||||
int def(char *src, char *dst, int bytes_to_compress, int *bytes_after_compressed)
|
||||
{
|
||||
z_stream strm;
|
||||
|
||||
int ret;//, flush;
|
||||
int ret;
|
||||
unsigned have;
|
||||
|
||||
/* allocate deflate state */
|
||||
|
@ -63,7 +56,6 @@ int inf(char *src, char *dst, int bytes_to_decompress, int maximum_after_decompr
|
|||
z_stream strm;
|
||||
|
||||
int ret;
|
||||
//unsigned have;
|
||||
|
||||
/* allocate inflate state */
|
||||
strm.zalloc = Z_NULL;
|
||||
|
|
|
@ -1,10 +1,21 @@
|
|||
/* ZeroGS KOSMOS
|
||||
*
|
||||
* Zerofrog's ZeroGS KOSMOS (c)2005-2008
|
||||
*
|
||||
* Zerofrog forgot to write any copyright notice after release the plugin into GPLv2
|
||||
* If someone can contact him successfully to clarify this matter that would be great.
|
||||
*/
|
||||
/* ZZ Open GL graphics plugin
|
||||
* Copyright (c)2009-2010 zeydlitz@gmail.com, arcum42@gmail.com
|
||||
* Based on Zerofrog's ZeroGS KOSMOS (c)2005-2008
|
||||
*
|
||||
* 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 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, write to the Free Software
|
||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
||||
*/
|
||||
|
||||
#ifndef zpipe_h
|
||||
#define zpipe_h
|
||||
|
|
Loading…
Reference in New Issue