From: José Fonseca Date: Wed, 9 Jul 2008 22:29:18 +0000 (+0900) Subject: More instructions and copyright updates. X-Git-Url: https://git.cworth.org/git?a=commitdiff_plain;h=fd304a2420cc199eaaed90f9867fc82e73b0aaf8;p=apitrace More instructions and copyright updates. --- diff --git a/README b/README index 6c3dc47..234c1e3 100644 --- a/README +++ b/README @@ -28,8 +28,22 @@ Requirements: * Microsoft DirectX SDK (tested with August 2007 release) Instructions: + * Invoke scons: - scons + + scons debug=no dxsdk=C:\DXSDK + +* You can write those options to a file named config.py: + + # config.py + debug=1 + dxsdk='C:\\DXSDK' + +* Invoke + + scons -h + +See the scons manpage for more info. = Usage = diff --git a/SConstruct b/SConstruct index 0993745..280fe02 100644 --- a/SConstruct +++ b/SConstruct @@ -1,23 +1,21 @@ -####################################################################### -# Top-level SConstruct +############################################################################# # -# For example, invoke scons as +# Copyright 2008 Tungsten Graphics, Inc. # -# scons debug=1 +# This program is free software: you can redistribute it and/or modify it +# under the terms of the GNU Lesser General Public License as published +# by the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. # -# to set configuration variables. Or you can write those options to a file -# named config.py: +# 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 Lesser General Public License for more details. # -# # config.py -# debug=1 -# dxsdk='C:\\DXSDK' -# -# Invoke +# You should have received a copy of the GNU Lesser General Public License +# along with this program. If not, see . # -# scons -h -# -# to get the full list of options. See scons manpage for more info. -# +############################################################################# import os import os.path @@ -74,9 +72,6 @@ env.Prepend(LIBS = [ 'kernel32', 'user32', 'gdi32', - 'comdlg32', - 'advapi32', - 'shell32', ]) env.Append(CPPPATH = [ diff --git a/base.py b/base.py index 64a02ed..8d733f3 100644 --- a/base.py +++ b/base.py @@ -1,6 +1,6 @@ ############################################################################# # -# Copyright 2008 Jose Fonseca +# Copyright 2008 Jose Fonseca, Tungsten Graphics, Inc. # # This program is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as published diff --git a/d3d8.py b/d3d8.py index 8a0cd08..0c85aa4 100644 --- a/d3d8.py +++ b/d3d8.py @@ -1,6 +1,6 @@ ############################################################################# # -# Copyright 2008 Jose Fonseca +# Copyright 2008 Jose Fonseca, Tungsten Graphics, Inc. # # This program is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as published diff --git a/d3d8caps.py b/d3d8caps.py index f92d861..696208a 100644 --- a/d3d8caps.py +++ b/d3d8caps.py @@ -1,6 +1,6 @@ ############################################################################# # -# Copyright 2008 Jose Fonseca +# Copyright 2008 Jose Fonseca, Tungsten Graphics, Inc. # # This program is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as published diff --git a/d3d8types.py b/d3d8types.py index 0bd1ec4..bcccc45 100644 --- a/d3d8types.py +++ b/d3d8types.py @@ -1,6 +1,6 @@ ############################################################################# # -# Copyright 2008 Jose Fonseca +# Copyright 2008 Jose Fonseca, Tungsten Graphics, Inc. # # This program is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as published diff --git a/d3d9.py b/d3d9.py index 91c8c4d..ea65f88 100644 --- a/d3d9.py +++ b/d3d9.py @@ -1,6 +1,6 @@ ############################################################################# # -# Copyright 2008 Jose Fonseca +# Copyright 2008 Jose Fonseca, Tungsten Graphics, Inc. # # This program is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as published diff --git a/d3d9caps.py b/d3d9caps.py index 52a9ec6..f0ea95b 100644 --- a/d3d9caps.py +++ b/d3d9caps.py @@ -1,6 +1,6 @@ ############################################################################# # -# Copyright 2008 Jose Fonseca +# Copyright 2008 Jose Fonseca, Tungsten Graphics, Inc. # # This program is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as published diff --git a/d3d9types.py b/d3d9types.py index bdbdf46..d4d667e 100644 --- a/d3d9types.py +++ b/d3d9types.py @@ -1,6 +1,6 @@ ############################################################################# # -# Copyright 2008 Jose Fonseca +# Copyright 2008 Jose Fonseca, Tungsten Graphics, Inc. # # This program is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as published diff --git a/d3dtrace-txt.xsl b/d3dtrace-txt.xsl index ea5c255..e3de3b1 100644 --- a/d3dtrace-txt.xsl +++ b/d3dtrace-txt.xsl @@ -1,5 +1,24 @@ + + diff --git a/d3dtrace.css b/d3dtrace.css index 535d6d2..7f961ab 100644 --- a/d3dtrace.css +++ b/d3dtrace.css @@ -1,3 +1,22 @@ +/**************************************************************************** + * + * Copyright 2008 Jose Fonseca, Tungsten Graphics, Inc. + * + * This program is free software: you can redistribute it and/or modify it + * under the terms of the GNU Lesser 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 Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public License + * along with this program. If not, see . + * + ****************************************************************************/ + body { font-family: verdana, sans-serif; font-size: 11px; diff --git a/d3dtrace.xsl b/d3dtrace.xsl index 99c36d4..19ba92e 100644 --- a/d3dtrace.xsl +++ b/d3dtrace.xsl @@ -1,5 +1,24 @@ + + diff --git a/debug.py b/debug.py index b425e28..0345fa9 100644 --- a/debug.py +++ b/debug.py @@ -1,3 +1,22 @@ +############################################################################# +# +# Copyright 2007 Jose Fonseca +# +# This program is free software: you can redistribute it and/or modify it +# under the terms of the GNU Lesser 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 Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public License +# along with this program. If not, see . +# +############################################################################# + '''Debugging utilities.''' diff --git a/log.cpp b/log.cpp index 20df332..a2e6762 100644 --- a/log.cpp +++ b/log.cpp @@ -1,6 +1,6 @@ /**************************************************************************** * - * Copyright 2008 Jose Fonseca + * Copyright 2008 Jose Fonseca, Tungsten Graphics, Inc. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published diff --git a/log.hpp b/log.hpp index 60ae3b7..043b69a 100644 --- a/log.hpp +++ b/log.hpp @@ -1,6 +1,6 @@ /**************************************************************************** * - * Copyright 2008 Jose Fonseca + * Copyright 2008 Jose Fonseca, Tungsten Graphics, Inc. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published diff --git a/windows.py b/windows.py index d5041a9..6a61d55 100644 --- a/windows.py +++ b/windows.py @@ -1,6 +1,6 @@ ############################################################################# # -# Copyright 2008 Jose Fonseca +# Copyright 2008 Jose Fonseca, Tungsten Graphics, Inc. # # This program is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as published