mirror of
https://github.com/libretro/pcsx2.git
synced 2025-02-12 12:58:25 +00:00
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
|
OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||||
SUCH DAMAGE.
|
SUCH DAMAGE.
|
||||||
|
|
||||||
Files: plugins/zzogl-pg/opengl/ZeroGSShaders/* plugins/zzogl-pg/opengl/zpipe*
|
Files: plugins/zzogl-pg/opengl/zpipe.cpp
|
||||||
Copyright: Unknown
|
Copyright: public domain
|
||||||
|
|
||||||
|
Files: plugins/zzogl-pg/opengl/ZeroGSShaders/zerogsshaders*
|
||||||
|
Copyright: Unknown
|
||||||
|
|
||||||
The Debian packaging is:
|
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
|
OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||||
SUCH DAMAGE.
|
SUCH DAMAGE.
|
||||||
|
|
||||||
Files: plugins/zzogl-pg/opengl/ZeroGSShaders/* plugins/zzogl-pg/opengl/zpipe*
|
Files: plugins/zzogl-pg/opengl/zpipe.cpp
|
||||||
Copyright: Unknown
|
Copyright: public domain
|
||||||
|
|
||||||
|
Files: plugins/zzogl-pg/opengl/ZeroGSShaders/zerogsshaders*
|
||||||
|
Copyright: Unknown
|
||||||
|
|
||||||
The Debian packaging is:
|
The Debian packaging is:
|
||||||
|
|
||||||
|
@ -1,10 +1,9 @@
|
|||||||
/* ZeroGS KOSMOS
|
/* The file is based of zpipe.c + minor rename and minor adaptation
|
||||||
*
|
*
|
||||||
* Zerofrog's ZeroGS KOSMOS (c)2005-2008
|
* zpipe.c: example of proper use of zlib's inflate() and deflate()
|
||||||
*
|
* Not copyrighted -- provided to the public domain
|
||||||
* Zerofrog forgot to write any copyright notice after release the plugin into GPLv2
|
* Version 1.4 11 December 2005 Mark Adler
|
||||||
* If someone can contact him successfully to clarify this matter that would be great.
|
*/
|
||||||
*/
|
|
||||||
|
|
||||||
// zpipe.cpp : Defines the entry point for the console application.
|
// zpipe.cpp : Defines the entry point for the console application.
|
||||||
//
|
//
|
||||||
|
@ -1,10 +1,21 @@
|
|||||||
/* ZeroGS KOSMOS
|
/* ZZ Open GL graphics plugin
|
||||||
*
|
* Copyright (c)2009-2010 zeydlitz@gmail.com, arcum42@gmail.com
|
||||||
* Zerofrog's ZeroGS KOSMOS (c)2005-2008
|
* Based on Zerofrog's ZeroGS KOSMOS (c)2005-2008
|
||||||
*
|
*
|
||||||
* Zerofrog forgot to write any copyright notice after release the plugin into GPLv2
|
* This program is free software; you can redistribute it and/or modify
|
||||||
* If someone can contact him successfully to clarify this matter that would be great.
|
* 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
|
#ifndef zpipe_h
|
||||||
#define zpipe_h
|
#define zpipe_h
|
||||||
|
@ -1,13 +1,9 @@
|
|||||||
/* ZeroGS KOSMOS
|
/* The file is based of zpipe.c + minor rename and minor adaptation
|
||||||
*
|
*
|
||||||
* Zerofrog's ZeroGS KOSMOS (c)2005-2008
|
* zpipe.c: example of proper use of zlib's inflate() and deflate()
|
||||||
*
|
* Not copyrighted -- provided to the public domain
|
||||||
* Zerofrog forgot to write any copyright notice after release the plugin into GPLv2
|
* Version 1.4 11 December 2005 Mark Adler
|
||||||
* If someone can contact him successfully to clarify this matter that would be great.
|
*/
|
||||||
*/
|
|
||||||
|
|
||||||
// zpipe.cpp : Defines the entry point for the console application.
|
|
||||||
//
|
|
||||||
|
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
|
|
||||||
@ -18,14 +14,11 @@
|
|||||||
//#define ZLIB_WINAPI
|
//#define ZLIB_WINAPI
|
||||||
#include "zlib.h"
|
#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)
|
int def(char *src, char *dst, int bytes_to_compress, int *bytes_after_compressed)
|
||||||
{
|
{
|
||||||
z_stream strm;
|
z_stream strm;
|
||||||
|
|
||||||
int ret;//, flush;
|
int ret;
|
||||||
unsigned have;
|
unsigned have;
|
||||||
|
|
||||||
/* allocate deflate state */
|
/* allocate deflate state */
|
||||||
@ -63,7 +56,6 @@ int inf(char *src, char *dst, int bytes_to_decompress, int maximum_after_decompr
|
|||||||
z_stream strm;
|
z_stream strm;
|
||||||
|
|
||||||
int ret;
|
int ret;
|
||||||
//unsigned have;
|
|
||||||
|
|
||||||
/* allocate inflate state */
|
/* allocate inflate state */
|
||||||
strm.zalloc = Z_NULL;
|
strm.zalloc = Z_NULL;
|
||||||
|
@ -1,10 +1,21 @@
|
|||||||
/* ZeroGS KOSMOS
|
/* ZZ Open GL graphics plugin
|
||||||
*
|
* Copyright (c)2009-2010 zeydlitz@gmail.com, arcum42@gmail.com
|
||||||
* Zerofrog's ZeroGS KOSMOS (c)2005-2008
|
* Based on Zerofrog's ZeroGS KOSMOS (c)2005-2008
|
||||||
*
|
*
|
||||||
* Zerofrog forgot to write any copyright notice after release the plugin into GPLv2
|
* This program is free software; you can redistribute it and/or modify
|
||||||
* If someone can contact him successfully to clarify this matter that would be great.
|
* 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
|
#ifndef zpipe_h
|
||||||
#define zpipe_h
|
#define zpipe_h
|
||||||
|
Loading…
x
Reference in New Issue
Block a user