From cfeb7a5b0a1b8d7082190837901e90089f58b316 Mon Sep 17 00:00:00 2001 From: "gregory.hainaut" Date: Tue, 29 May 2012 06:59:33 +0000 Subject: [PATCH] copyright: remove the special copyright note. Only impact trivial code (enum and register definition) git-svn-id: http://pcsx2.googlecode.com/svn/trunk@5241 96395faa-99c1-11dd-bbfe-3dabce05a288 --- plugins/GSdx/GS.h | 17 ----------------- plugins/GSnull/Registers.h | 17 ----------------- 2 files changed, 34 deletions(-) diff --git a/plugins/GSdx/GS.h b/plugins/GSdx/GS.h index 12a81f87fd..112c991dc3 100644 --- a/plugins/GSdx/GS.h +++ b/plugins/GSdx/GS.h @@ -17,11 +17,6 @@ * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. * http://www.gnu.org/copyleft/gpl.html * - * Special Notes: - * - * Register definitions and most of the enums originate from sps2dev-0.4.0 - * Copyright (C) 2002 Terratron Technologies Inc. All Rights Reserved. - * */ #pragma once @@ -45,10 +40,6 @@ #pragma pack(push, 1) -// -// sps2registers.h -// - enum GS_PRIM { GS_POINTLIST = 0, @@ -225,10 +216,6 @@ enum GS_AFAIL AFAIL_RGB_ONLY = 3, }; -// -// sps2regstructs.h -// - #define REG32(name) \ union name \ { \ @@ -507,10 +494,6 @@ REG64_SET(GSReg) GSRegSMODE2 SMODE2; REG_SET_END -// -// sps2tags.h -// - // // GIFTag diff --git a/plugins/GSnull/Registers.h b/plugins/GSnull/Registers.h index ed81b2fe3e..75c8aaffd0 100644 --- a/plugins/GSnull/Registers.h +++ b/plugins/GSnull/Registers.h @@ -16,14 +16,6 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA */ -// These enums & structures are copied from GSdx, which got them from sp2dev 0.4.0. - -// sp2dev is Copyright (C) 2002 Terratron Technologies Inc. All Rights Reserved. -// http://window.terratron.com/~sosman/ps2linux/ -// -// Gsdx is Copyright (C) 2007-2009 Gabest All Rights Reserved. -// http://www.gabest.org -// #ifndef __REGISTERS_H__ #define __REGISTERS_H__ @@ -578,15 +570,6 @@ REG64_SET(GSReg) GSRegSMODE2 SMODE2; REG_SET_END -// -// sps2tags.h -// - -#define SET_GIF_REG(gifTag, iRegNo, uiValue) \ - {((GIFTag*)&gifTag)->u64[1] |= (((uiValue) & 0xf) << ((iRegNo) << 2));} - -#define GET_GIF_REG(tag, reg) \ - (((tag).u32[2 + ((reg) >> 3)] >> (((reg) & 7) << 2)) & 0xf) // // GIFTag