You can subscribe to this list here.
2004 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(79) |
Aug
(69) |
Sep
(120) |
Oct
(17) |
Nov
(7) |
Dec
|
---|
From: Tim R. <ti...@us...> - 2004-09-11 22:42:40
|
Update of /cvsroot/csdopenglnet/csdOpenGL/platform/mono In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16051/platform/mono Modified Files: AssemblyInfo.cs Log Message: restructuring Index: AssemblyInfo.cs =================================================================== RCS file: /cvsroot/csdopenglnet/csdOpenGL/platform/mono/AssemblyInfo.cs,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** AssemblyInfo.cs 11 Sep 2004 17:26:19 -0000 1.2 --- AssemblyInfo.cs 11 Sep 2004 22:42:22 -0000 1.3 *************** *** 23,26 **** [assembly: AssemblyTrademarkAttribute("")] [assembly: AssemblyCultureAttribute("")] ! [assembly: AssemblyVersionAttribute("0.2.1.1715")] [assembly: AssemblyInformationalVersionAttribute("0.2.1")] --- 23,26 ---- [assembly: AssemblyTrademarkAttribute("")] [assembly: AssemblyCultureAttribute("")] ! [assembly: AssemblyVersionAttribute("0.2.1.1716")] [assembly: AssemblyInformationalVersionAttribute("0.2.1")] |
From: Tim R. <ti...@us...> - 2004-09-11 22:42:32
|
Update of /cvsroot/csdopenglnet/csdOpenGL/math In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16051/math Modified Files: AssemblyInfo.cs Log Message: restructuring Index: AssemblyInfo.cs =================================================================== RCS file: /cvsroot/csdopenglnet/csdOpenGL/math/AssemblyInfo.cs,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** AssemblyInfo.cs 11 Sep 2004 19:36:36 -0000 1.4 --- AssemblyInfo.cs 11 Sep 2004 22:42:22 -0000 1.5 *************** *** 23,26 **** [assembly: AssemblyTrademarkAttribute("")] [assembly: AssemblyCultureAttribute("")] ! [assembly: AssemblyVersionAttribute("0.2.1.1715")] [assembly: AssemblyInformationalVersionAttribute("0.2.1")] --- 23,26 ---- [assembly: AssemblyTrademarkAttribute("")] [assembly: AssemblyCultureAttribute("")] ! [assembly: AssemblyVersionAttribute("0.2.1.1716")] [assembly: AssemblyInformationalVersionAttribute("0.2.1")] |
From: Tim R. <ti...@us...> - 2004-09-11 22:42:31
|
Update of /cvsroot/csdopenglnet/csdOpenGL/generator In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16051/generator Modified Files: AssemblyInfo.cs Log Message: restructuring Index: AssemblyInfo.cs =================================================================== RCS file: /cvsroot/csdopenglnet/csdOpenGL/generator/AssemblyInfo.cs,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** AssemblyInfo.cs 11 Sep 2004 19:36:36 -0000 1.4 --- AssemblyInfo.cs 11 Sep 2004 22:42:21 -0000 1.5 *************** *** 23,26 **** [assembly: AssemblyTrademarkAttribute("")] [assembly: AssemblyCultureAttribute("")] ! [assembly: AssemblyVersionAttribute("0.2.1.1715")] [assembly: AssemblyInformationalVersionAttribute("0.2.1")] --- 23,26 ---- [assembly: AssemblyTrademarkAttribute("")] [assembly: AssemblyCultureAttribute("")] ! [assembly: AssemblyVersionAttribute("0.2.1.1716")] [assembly: AssemblyInformationalVersionAttribute("0.2.1")] |
From: Tim R. <ti...@us...> - 2004-09-11 20:48:19
|
Update of /cvsroot/csdopenglnet/csdOpenGL/generator In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27292/generator Modified Files: function.cs Log Message: entrypoint must be set for callback/delegate wrapper Index: function.cs =================================================================== RCS file: /cvsroot/csdopenglnet/csdOpenGL/generator/function.cs,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** function.cs 11 Sep 2004 20:41:58 -0000 1.7 --- function.cs 11 Sep 2004 20:48:09 -0000 1.8 *************** *** 246,250 **** if (isCB) { addWrapper( t, n, p ); ! fs2 = new FunctionSet( t, "__"+n, p ); } else { fs2 = new FunctionSet( t, n, p ); --- 246,250 ---- if (isCB) { addWrapper( t, n, p ); ! fs2 = new FunctionSet( t, "__"+n, n, p ); } else { fs2 = new FunctionSet( t, n, p ); *************** *** 369,372 **** --- 369,377 ---- writer.Write( lib ); writer.Write( "\" " ); + if ( fs.name!=fs.entryPoint) { + writer.Write( ", EntryPoint=\"" ); + writer.Write( fs.entryPoint ); + writer.Write( "\"" ); + } if ( (dllFlags!=null) && (dllFlags!="") ) { writer.Write( ", " ); *************** *** 416,419 **** --- 421,425 ---- /** The name of the function. */ public string name=""; + public string entryPoint=""; /** The parameter list of the function */ public ArrayList parameters; *************** *** 422,425 **** --- 428,438 ---- type = _type; name = _name; + entryPoint = _name; + parameters = _params; + } + public FunctionSet( string _type, string _name, string _entryPoint, ArrayList _params ) { + type = _type; + name = _name; + entryPoint = _entryPoint; parameters = _params; } *************** *** 450,455 **** type = _type; name = _name; ! } ! public object Clone() { return new ParamSet( type, name ); --- 463,467 ---- type = _type; name = _name; ! } public object Clone() { return new ParamSet( type, name ); |
From: Tim R. <ti...@us...> - 2004-09-11 20:42:10
|
Update of /cvsroot/csdopenglnet/csdOpenGL/generator In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25560/generator Modified Files: Makefile function.cs Log Message: generator now produces buffer attribute for callbacks Index: function.cs =================================================================== RCS file: /cvsroot/csdopenglnet/csdOpenGL/generator/function.cs,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** function.cs 11 Sep 2004 19:36:36 -0000 1.6 --- function.cs 11 Sep 2004 20:41:58 -0000 1.7 *************** *** 25,28 **** --- 25,32 ---- */ protected ArrayList list; + + protected ArrayList listWrap; + protected SortedList attrList; + /** \brief to resolve user defined types * *************** *** 37,40 **** --- 41,46 ---- protected string lib; + protected bool isCallback = false; + protected string dllFlags; protected string dllAttr; *************** *** 78,81 **** --- 84,90 ---- baseTypes.Add( "ulong" ); + listWrap = new ArrayList(); + attrList = new SortedList(); + Debug.WriteLine( "Exiting Function.Function(StreamWriter)" ); Debug.Unindent(); *************** *** 92,98 **** --- 101,109 ---- if ( name==typedef.processName(name) ) { if ( (s.IndexOf( '(' ) >= 0) || (s.IndexOf(')')>=0) ) { // decided whether if complex type + isCallback = true; typedef.addCallBack( s, name, c ); return typedef.cbParamSet( name, c ); } else { // or standard type + isCallback = false; int i = s.LastIndexOf( ' ' ); // find crossover between type and name if ( i >= 0 ) { // is type+id *************** *** 214,219 **** --- 225,234 ---- ArrayList p; ParamSet ps = null; + bool isCB = false; + string t; + string n; while ( e.MoveNext() ) { // cycle thorugh function list and procerss types and names + isCB = false; fs = (FunctionSet)e.Current; p = new ArrayList(); *************** *** 221,224 **** --- 236,240 ---- for ( int i=0; i<fs.parameters.Count; i++ ) { ps = processParam( (string)(fs.parameters[i]), fs.name, i ); + isCB = isCB || isCallback; if (ps!=null) { p.Add( ps ); *************** *** 226,231 **** } ! ! fs2 = new FunctionSet( typedef.processType( fs.type ), typedef.processName( fs.name ), p ); list.Add( fs2 ); removeIntPtr( fs2 ); --- 242,253 ---- } ! t = typedef.processType( fs.type ); ! n = typedef.processName( fs.name ); ! if (isCB) { ! addWrapper( t, n, p ); ! fs2 = new FunctionSet( t, "__"+n, p ); ! } else { ! fs2 = new FunctionSet( t, n, p ); ! } list.Add( fs2 ); removeIntPtr( fs2 ); *************** *** 237,240 **** --- 259,271 ---- } + protected void addWrapper( string t, string n, ArrayList p ) { + listWrap.Add( new FunctionSet( t, n, p ) ); + ParamSet ps; + for ( int i=0; i<p.Count; i++ ) { + ps = (ParamSet)p[i]; + attrList.Add( "par_"+n+i.ToString(), ps.type ); + } + } + protected void removeIntPtr( FunctionSet fs ) { FunctionSet f; *************** *** 278,287 **** Debug.WriteLine( "Entering Functions.write()" ); ! Console.WriteLine( "Writing function statements" ); ! ! IEnumerator e = list.GetEnumerator(); FunctionSet fs; ParamSet ps; while ( e.MoveNext() ) { fs = (FunctionSet)e.Current; --- 309,366 ---- Debug.WriteLine( "Entering Functions.write()" ); ! IDictionaryEnumerator s = attrList.GetEnumerator(); ! while ( s.MoveNext() ) { ! writer.Write( " private static " ); ! writer.Write( (string)s.Value ); ! writer.Write( " " ); ! writer.Write( (string)s.Key ); ! writer.Write( ";\n" ); ! } ! ! IEnumerator e = listWrap.GetEnumerator(); FunctionSet fs; ParamSet ps; + while ( e.MoveNext() ) { + fs = (FunctionSet)e.Current; + + writer.Write( " public static " ); + writer.Write( fs.type ); + writer.Write( " " ); + writer.Write( fs.name ); + + writer.Write( "( " ); + for (int i=0; i<fs.parameters.Count; i++ ) { + ps = (ParamSet)fs.parameters[i]; + writer.Write( ps.type ); + writer.Write( " " ); + writer.Write( ps.name ); + if (i<fs.parameters.Count-1) writer.Write( ", " ); + } + writer.WriteLine( " ) {" ); + for ( int i=0; i<fs.parameters.Count; i++ ) { + ps = (ParamSet)fs.parameters[i]; + writer.WriteLine( " " ); + writer.WriteLine( "par_"+fs.name+i.ToString() ); + writer.WriteLine( " = " ); + writer.WriteLine( ps.name ); + writer.WriteLine( ";\n" ); + } + writer.Write( " " ); + if ( fs.type != "void" ) writer.Write( "return " ); + writer.Write( "__"); + writer.Write( fs.name ); + writer.Write( "( " ); + for (int i=0; i<fs.parameters.Count; i++ ) { + ps = (ParamSet)fs.parameters[i]; + writer.Write( "par_"+fs.name+i.ToString() ); + if (i<fs.parameters.Count-1) writer.Write( ", " ); + } + writer.Write( " );" ); + writer.WriteLine( " }" ); + + } + Console.WriteLine( "Writing function statements" ); + e = list.GetEnumerator(); while ( e.MoveNext() ) { fs = (FunctionSet)e.Current; Index: Makefile =================================================================== RCS file: /cvsroot/csdopenglnet/csdOpenGL/generator/Makefile,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** Makefile 11 Sep 2004 17:26:19 -0000 1.12 --- Makefile 11 Sep 2004 20:41:58 -0000 1.13 *************** *** 3,7 **** CC=mcs DEBUG=/d:DEBUG ! #DEBUG= OPTS=$(DEBUG) MCS=$(CC) $(OPTS) --- 3,7 ---- CC=mcs DEBUG=/d:DEBUG ! DEBUG= OPTS=$(DEBUG) MCS=$(CC) $(OPTS) |
From: Tim R. <ti...@us...> - 2004-09-11 20:42:10
|
Update of /cvsroot/csdopenglnet/csdOpenGL/GL In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25560/GL Modified Files: Makefile Log Message: generator now produces buffer attribute for callbacks Index: Makefile =================================================================== RCS file: /cvsroot/csdopenglnet/csdOpenGL/GL/Makefile,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** Makefile 11 Sep 2004 12:27:21 -0000 1.8 --- Makefile 11 Sep 2004 20:41:57 -0000 1.9 *************** *** 1,3 **** ! FILES=gl.xml.cs csdGL.cs glu.xml.cs glut.xml.cs Exceptions.cs GEN=mono ../generator/csdGenerator.exe --- 1,3 ---- ! FILES=gl.xml.cs csdGL.cs glu.xml.cs glut.xml.cs Exceptions.cs DelegateCallingConventionCdeclAttribute.cs GEN=mono ../generator/csdGenerator.exe |
From: Tim R. <ti...@us...> - 2004-09-11 19:41:08
|
Update of /cvsroot/csdopenglnet/csdOpenGL/GL In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14704 Added Files: DelegateCallingConventionCdeclAttribute.cs Log Message: needed for delegates --- NEW FILE: DelegateCallingConventionCdeclAttribute.cs --- using System; using System.Runtime.InteropServices; namespace csDragons.OpenGL { [AttributeUsage(AttributeTargets.Delegate, AllowMultiple=false, Inherited=false)] public class DelegateCallingConventionCdeclAttribute : Attribute { public DelegateCallingConventionCdeclAttribute() {} } } |
From: Tim R. <ti...@us...> - 2004-09-11 19:36:45
|
Update of /cvsroot/csdopenglnet/csdOpenGL/tools In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13853/tools Modified Files: AssemblyInfo.cs Log Message: the generator has new optons Index: AssemblyInfo.cs =================================================================== RCS file: /cvsroot/csdopenglnet/csdOpenGL/tools/AssemblyInfo.cs,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** AssemblyInfo.cs 11 Sep 2004 18:52:46 -0000 1.3 --- AssemblyInfo.cs 11 Sep 2004 19:36:37 -0000 1.4 *************** *** 3,15 **** using System.Runtime.InteropServices; ! //------------------------------------------------------------------------------ ! // <autogenerated> ! // This code was generated by a tool. ! // Runtime Version: 1.1.4322.573 ! // ! // Changes to this file may cause incorrect behavior and will be lost if ! // the code is regenerated. ! // </autogenerated> ! //------------------------------------------------------------------------------ [assembly: ComVisibleAttribute(false)] --- 3,15 ---- using System.Runtime.InteropServices; ! // ------------------------------------------------------------------------------ ! // <autogenerated> ! // This code was generated by a tool. ! // Mono Runtime Version: 1.1.4322.573 ! // ! // Changes to this file may cause incorrect behavior and will be lost if ! // the code is regenerated. ! // </autogenerated> ! // ------------------------------------------------------------------------------ [assembly: ComVisibleAttribute(false)] *************** *** 17,21 **** [assembly: AssemblyTitleAttribute("csDragons OpenGL# Tools")] [assembly: AssemblyDescriptionAttribute("A tool to build C# bindings")] ! [assembly: AssemblyConfigurationAttribute("net-1.1.win32")] [assembly: AssemblyCompanyAttribute("http://www.csdragons.de")] [assembly: AssemblyProductAttribute("wrapper-generator")] --- 17,21 ---- [assembly: AssemblyTitleAttribute("csDragons OpenGL# Tools")] [assembly: AssemblyDescriptionAttribute("A tool to build C# bindings")] ! [assembly: AssemblyConfigurationAttribute("mono-1.0.unix")] [assembly: AssemblyCompanyAttribute("http://www.csdragons.de")] [assembly: AssemblyProductAttribute("wrapper-generator")] *************** *** 25,27 **** [assembly: AssemblyVersionAttribute("0.2.1.1715")] [assembly: AssemblyInformationalVersionAttribute("0.2.1")] - --- 25,26 ---- |
From: Tim R. <ti...@us...> - 2004-09-11 19:36:45
|
Update of /cvsroot/csdopenglnet/csdOpenGL/math In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13853/math Modified Files: AssemblyInfo.cs Log Message: the generator has new optons Index: AssemblyInfo.cs =================================================================== RCS file: /cvsroot/csdopenglnet/csdOpenGL/math/AssemblyInfo.cs,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** AssemblyInfo.cs 11 Sep 2004 18:52:45 -0000 1.3 --- AssemblyInfo.cs 11 Sep 2004 19:36:36 -0000 1.4 *************** *** 3,15 **** using System.Runtime.InteropServices; ! //------------------------------------------------------------------------------ ! // <autogenerated> ! // This code was generated by a tool. ! // Runtime Version: 1.1.4322.573 ! // ! // Changes to this file may cause incorrect behavior and will be lost if ! // the code is regenerated. ! // </autogenerated> ! //------------------------------------------------------------------------------ [assembly: ComVisibleAttribute(false)] --- 3,15 ---- using System.Runtime.InteropServices; ! // ------------------------------------------------------------------------------ ! // <autogenerated> ! // This code was generated by a tool. ! // Mono Runtime Version: 1.1.4322.573 ! // ! // Changes to this file may cause incorrect behavior and will be lost if ! // the code is regenerated. ! // </autogenerated> ! // ------------------------------------------------------------------------------ [assembly: ComVisibleAttribute(false)] *************** *** 17,21 **** [assembly: AssemblyTitleAttribute("csDragons Math")] [assembly: AssemblyDescriptionAttribute("A tool to build C# bindings")] ! [assembly: AssemblyConfigurationAttribute("net-1.1.win32")] [assembly: AssemblyCompanyAttribute("http://www.csdragons.de")] [assembly: AssemblyProductAttribute("wrapper-generator")] --- 17,21 ---- [assembly: AssemblyTitleAttribute("csDragons Math")] [assembly: AssemblyDescriptionAttribute("A tool to build C# bindings")] ! [assembly: AssemblyConfigurationAttribute("mono-1.0.unix")] [assembly: AssemblyCompanyAttribute("http://www.csdragons.de")] [assembly: AssemblyProductAttribute("wrapper-generator")] *************** *** 25,27 **** [assembly: AssemblyVersionAttribute("0.2.1.1715")] [assembly: AssemblyInformationalVersionAttribute("0.2.1")] - --- 25,26 ---- |
From: Tim R. <ti...@us...> - 2004-09-11 19:36:45
|
Update of /cvsroot/csdopenglnet/csdOpenGL/generator In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13853/generator Modified Files: AssemblyInfo.cs config.cs function.cs generator.build generator.cs typedef.cs Log Message: the generator has new optons Index: generator.cs =================================================================== RCS file: /cvsroot/csdopenglnet/csdOpenGL/generator/generator.cs,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** generator.cs 11 Sep 2004 18:52:45 -0000 1.8 --- generator.cs 11 Sep 2004 19:36:36 -0000 1.9 *************** *** 81,86 **** writer = new StreamWriter( fs ); // bind stream to file define = new Define( writer ); // initialize define compiler ! typedef = new TypeDef( writer, config.baseTypes ); // initialize typedef compiler ! function = new Function( writer, typedef, config.linkLibrary, config.ignoreFunctions ); // initiaize function compiler writeHeader(); // write file header --- 81,86 ---- writer = new StreamWriter( fs ); // bind stream to file define = new Define( writer ); // initialize define compiler ! typedef = new TypeDef( writer, config.baseTypes, config.DelegateAttribute ); // initialize typedef compiler ! function = new Function( writer, typedef, config.DllImportFlags, config.DllImportAttributes, config.linkLibrary, config.ignoreFunctions ); // initiaize function compiler writeHeader(); // write file header Index: generator.build =================================================================== RCS file: /cvsroot/csdopenglnet/csdOpenGL/generator/generator.build,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** generator.build 11 Sep 2004 17:26:19 -0000 1.2 --- generator.build 11 Sep 2004 19:36:36 -0000 1.3 *************** *** 19,23 **** <attributes> <attribute type="ComVisibleAttribute" value="false" /> ! <attribute type="CLSCompliantAttribute" value="true" /> <attribute type="AssemblyTitleAttribute" value="csDragons WrapperGenerator" /> <attribute type="AssemblyDescriptionAttribute" value="A tool to build C# bindings" /> --- 19,23 ---- <attributes> <attribute type="ComVisibleAttribute" value="false" /> ! <attribute type="CLSCompliantAttribute" value="false" /> <attribute type="AssemblyTitleAttribute" value="csDragons WrapperGenerator" /> <attribute type="AssemblyDescriptionAttribute" value="A tool to build C# bindings" /> Index: config.cs =================================================================== RCS file: /cvsroot/csdopenglnet/csdOpenGL/generator/config.cs,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** config.cs 5 Aug 2004 21:13:56 -0000 1.4 --- config.cs 11 Sep 2004 19:36:36 -0000 1.5 *************** *** 33,36 **** --- 33,40 ---- */ public string outputFile; + public string DllImportFlags; + public string DelegateAttribute; + public string DllImportAttributes; + public bool writeFunctions; public bool writeDelegates; Index: typedef.cs =================================================================== RCS file: /cvsroot/csdopenglnet/csdOpenGL/generator/typedef.cs,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** typedef.cs 6 Aug 2004 11:42:34 -0000 1.5 --- typedef.cs 11 Sep 2004 19:36:36 -0000 1.6 *************** *** 28,31 **** --- 28,33 ---- protected SortedList dList; + protected string delegateAttribute = ""; + /** \brief Constructor * *************** *** 59,63 **** } ! public TypeDef( StreamWriter w, ArrayList typedefs ) : this ( w ) { IEnumerator e = typedefs.GetEnumerator(); while (e.MoveNext()) { --- 61,66 ---- } ! public TypeDef( StreamWriter w, ArrayList typedefs, string delAttr ) : this ( w ) { ! delegateAttribute = delAttr; IEnumerator e = typedefs.GetEnumerator(); while (e.MoveNext()) { *************** *** 222,225 **** --- 225,233 ---- while ( e.MoveNext() ) { + if ( (delegateAttribute!=null) && (delegateAttribute!="") ) { + writer.Write( " " ); + writer.Write( delegateAttribute ); + writer.Write( "\n" ); + } writer.Write( " public delegate " ); writer.Write( e.Value ); Index: function.cs =================================================================== RCS file: /cvsroot/csdopenglnet/csdOpenGL/generator/function.cs,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** function.cs 11 Sep 2004 17:31:47 -0000 1.5 --- function.cs 11 Sep 2004 19:36:36 -0000 1.6 *************** *** 36,39 **** --- 36,42 ---- */ protected string lib; + + protected string dllFlags; + protected string dllAttr; protected ArrayList baseTypes; *************** *** 49,56 **** * @param l the name of the library to be wrapped */ ! public Function( StreamWriter w, TypeDef t, string l, ArrayList _ignoreFunctions ) { Debug.Indent(); Debug.WriteLine( "Entering Function.Function(StreamWriter)" ); writer = w; typedef = t; --- 52,61 ---- * @param l the name of the library to be wrapped */ ! public Function( StreamWriter w, TypeDef t, string df, string da, string l, ArrayList _ignoreFunctions ) { Debug.Indent(); Debug.WriteLine( "Entering Function.Function(StreamWriter)" ); + dllFlags = df; + dllAttr = da; writer = w; typedef = t; *************** *** 284,288 **** writer.Write( " [ DllImport( \"" ); writer.Write( lib ); ! writer.Write( "\" ) ]\n" ); writer.Write( " public static extern " ); --- 289,303 ---- writer.Write( " [ DllImport( \"" ); writer.Write( lib ); ! writer.Write( "\" " ); ! if ( (dllFlags!=null) && (dllFlags!="") ) { ! writer.Write( ", " ); ! writer.Write( dllFlags.Trim() ); ! } ! writer.Write( " ) " ); ! if ( (dllAttr!=null) && (dllAttr!="") ) { ! writer.Write( ", " ); ! writer.Write( dllAttr.Trim() ); ! } ! writer.Write(" ]\n" ); writer.Write( " public static extern " ); Index: AssemblyInfo.cs =================================================================== RCS file: /cvsroot/csdopenglnet/csdOpenGL/generator/AssemblyInfo.cs,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** AssemblyInfo.cs 11 Sep 2004 18:52:45 -0000 1.3 --- AssemblyInfo.cs 11 Sep 2004 19:36:36 -0000 1.4 *************** *** 3,21 **** using System.Runtime.InteropServices; ! //------------------------------------------------------------------------------ ! // <autogenerated> ! // This code was generated by a tool. ! // Runtime Version: 1.1.4322.573 ! // ! // Changes to this file may cause incorrect behavior and will be lost if ! // the code is regenerated. ! // </autogenerated> ! //------------------------------------------------------------------------------ [assembly: ComVisibleAttribute(false)] ! [assembly: CLSCompliantAttribute(true)] [assembly: AssemblyTitleAttribute("csDragons WrapperGenerator")] [assembly: AssemblyDescriptionAttribute("A tool to build C# bindings")] ! [assembly: AssemblyConfigurationAttribute("net-1.1.win32")] [assembly: AssemblyCompanyAttribute("http://www.csdragons.de")] [assembly: AssemblyProductAttribute("wrapper-generator")] --- 3,21 ---- using System.Runtime.InteropServices; ! // ------------------------------------------------------------------------------ ! // <autogenerated> ! // This code was generated by a tool. ! // Mono Runtime Version: 1.1.4322.573 ! // ! // Changes to this file may cause incorrect behavior and will be lost if ! // the code is regenerated. ! // </autogenerated> ! // ------------------------------------------------------------------------------ [assembly: ComVisibleAttribute(false)] ! [assembly: CLSCompliantAttribute(false)] [assembly: AssemblyTitleAttribute("csDragons WrapperGenerator")] [assembly: AssemblyDescriptionAttribute("A tool to build C# bindings")] ! [assembly: AssemblyConfigurationAttribute("mono-1.0.unix")] [assembly: AssemblyCompanyAttribute("http://www.csdragons.de")] [assembly: AssemblyProductAttribute("wrapper-generator")] *************** *** 25,27 **** [assembly: AssemblyVersionAttribute("0.2.1.1715")] [assembly: AssemblyInformationalVersionAttribute("0.2.1")] - --- 25,26 ---- |
From: Tim R. <ti...@us...> - 2004-09-11 19:36:45
|
Update of /cvsroot/csdopenglnet/csdOpenGL/GL In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13853/GL Modified Files: AssemblyInfo.cs glut.xml Log Message: the generator has new optons Index: AssemblyInfo.cs =================================================================== RCS file: /cvsroot/csdopenglnet/csdOpenGL/GL/AssemblyInfo.cs,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** AssemblyInfo.cs 11 Sep 2004 18:52:44 -0000 1.3 --- AssemblyInfo.cs 11 Sep 2004 19:36:36 -0000 1.4 *************** *** 3,15 **** using System.Runtime.InteropServices; ! //------------------------------------------------------------------------------ ! // <autogenerated> ! // This code was generated by a tool. ! // Runtime Version: 1.1.4322.573 ! // ! // Changes to this file may cause incorrect behavior and will be lost if ! // the code is regenerated. ! // </autogenerated> ! //------------------------------------------------------------------------------ [assembly: ComVisibleAttribute(false)] --- 3,15 ---- using System.Runtime.InteropServices; ! // ------------------------------------------------------------------------------ ! // <autogenerated> ! // This code was generated by a tool. ! // Mono Runtime Version: 1.1.4322.573 ! // ! // Changes to this file may cause incorrect behavior and will be lost if ! // the code is regenerated. ! // </autogenerated> ! // ------------------------------------------------------------------------------ [assembly: ComVisibleAttribute(false)] *************** *** 17,21 **** [assembly: AssemblyTitleAttribute("csDragons OpenGL#")] [assembly: AssemblyDescriptionAttribute("A tool to build C# bindings")] ! [assembly: AssemblyConfigurationAttribute("net-1.1.win32")] [assembly: AssemblyCompanyAttribute("http://www.csdragons.de")] [assembly: AssemblyProductAttribute("wrapper-generator")] --- 17,21 ---- [assembly: AssemblyTitleAttribute("csDragons OpenGL#")] [assembly: AssemblyDescriptionAttribute("A tool to build C# bindings")] ! [assembly: AssemblyConfigurationAttribute("mono-1.0.unix")] [assembly: AssemblyCompanyAttribute("http://www.csdragons.de")] [assembly: AssemblyProductAttribute("wrapper-generator")] *************** *** 25,27 **** [assembly: AssemblyVersionAttribute("0.2.1.1715")] [assembly: AssemblyInformationalVersionAttribute("0.2.1")] - --- 25,26 ---- Index: glut.xml =================================================================== RCS file: /cvsroot/csdopenglnet/csdOpenGL/GL/glut.xml,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** glut.xml 11 Sep 2004 12:07:14 -0000 1.6 --- glut.xml 11 Sep 2004 19:36:36 -0000 1.7 *************** *** 14,16 **** --- 14,19 ---- </TypeDefs> <Namespace>csDragons.OpenGL</Namespace> + <DllImportFlags>CallingConvention=CallingConvention.Winapi</DllImportFlags> + <DllImportAttributes>System.Security.SuppressUnmanagedCodeSecurity</DllImportAttributes> + <DelegateAttribute>[DelegateCallingConventionCdeclAttribute]</DelegateAttribute> </Configuration> \ No newline at end of file |
From: Tim R. <ti...@us...> - 2004-09-11 19:36:44
|
Update of /cvsroot/csdopenglnet/csdOpenGL/Cg In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13853/Cg Modified Files: AssemblyInfo.cs Log Message: the generator has new optons Index: AssemblyInfo.cs =================================================================== RCS file: /cvsroot/csdopenglnet/csdOpenGL/Cg/AssemblyInfo.cs,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** AssemblyInfo.cs 11 Sep 2004 18:52:44 -0000 1.3 --- AssemblyInfo.cs 11 Sep 2004 19:36:36 -0000 1.4 *************** *** 3,15 **** using System.Runtime.InteropServices; ! //------------------------------------------------------------------------------ ! // <autogenerated> ! // This code was generated by a tool. ! // Runtime Version: 1.1.4322.573 ! // ! // Changes to this file may cause incorrect behavior and will be lost if ! // the code is regenerated. ! // </autogenerated> ! //------------------------------------------------------------------------------ [assembly: ComVisibleAttribute(false)] --- 3,15 ---- using System.Runtime.InteropServices; ! // ------------------------------------------------------------------------------ ! // <autogenerated> ! // This code was generated by a tool. ! // Mono Runtime Version: 1.1.4322.573 ! // ! // Changes to this file may cause incorrect behavior and will be lost if ! // the code is regenerated. ! // </autogenerated> ! // ------------------------------------------------------------------------------ [assembly: ComVisibleAttribute(false)] *************** *** 17,21 **** [assembly: AssemblyTitleAttribute("csDragons OpenGL-Cg#")] [assembly: AssemblyDescriptionAttribute("A tool to build C# bindings")] ! [assembly: AssemblyConfigurationAttribute("net-1.1.win32")] [assembly: AssemblyCompanyAttribute("http://www.csdragons.de")] [assembly: AssemblyProductAttribute("wrapper-generator")] --- 17,21 ---- [assembly: AssemblyTitleAttribute("csDragons OpenGL-Cg#")] [assembly: AssemblyDescriptionAttribute("A tool to build C# bindings")] ! [assembly: AssemblyConfigurationAttribute("mono-1.0.unix")] [assembly: AssemblyCompanyAttribute("http://www.csdragons.de")] [assembly: AssemblyProductAttribute("wrapper-generator")] *************** *** 25,27 **** [assembly: AssemblyVersionAttribute("0.2.1.1715")] [assembly: AssemblyInformationalVersionAttribute("0.2.1")] - --- 25,26 ---- |
From: Tim R. <ti...@us...> - 2004-09-11 19:36:44
|
Update of /cvsroot/csdopenglnet/csdOpenGL In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13853 Modified Files: NAnt.build Log Message: the generator has new optons Index: NAnt.build =================================================================== RCS file: /cvsroot/csdopenglnet/csdOpenGL/NAnt.build,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** NAnt.build 11 Sep 2004 18:52:45 -0000 1.8 --- NAnt.build 11 Sep 2004 19:36:35 -0000 1.9 *************** *** 7,11 **** <property name="build.dir" value="${nant.project.basedir}/build/" /> <property name="debug" value="false" dynamic="true" overwrite="false" /> ! <property name="gtk" value="false" dynamic="true" overwrite="false"/> <property name="gtkdir" value="/usr/lib/mono/gtk-sharp" dynamic="true" overwrite="false"/> <property name="gen" value="${nant.project.basedir}/generator/generator.exe" /> --- 7,11 ---- <property name="build.dir" value="${nant.project.basedir}/build/" /> <property name="debug" value="false" dynamic="true" overwrite="false" /> ! <property name="gtk" value="true" dynamic="true" overwrite="false"/> <property name="gtkdir" value="/usr/lib/mono/gtk-sharp" dynamic="true" overwrite="false"/> <property name="gen" value="${nant.project.basedir}/generator/generator.exe" /> |
From: Tim R. <ti...@us...> - 2004-09-11 18:52:56
|
Update of /cvsroot/csdopenglnet/csdOpenGL/samples In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6134/samples Modified Files: gears.cs samples.build Log Message: adaptation for windows Index: gears.cs =================================================================== RCS file: /cvsroot/csdopenglnet/csdOpenGL/samples/gears.cs,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** gears.cs 6 Aug 2004 11:42:34 -0000 1.7 --- gears.cs 11 Sep 2004 18:52:46 -0000 1.8 *************** *** 1,4 **** --- 1,5 ---- using csDragons.OpenGL; using System; + using System.Diagnostics; public class Gears : GL { *************** *** 13,43 **** public Gears() { glutInitDisplayMode( GLUT_RGB | GLUT_DOUBLE ); glutInitWindowSize( 480, 480 ); glutCreateWindow("Gears"); initGL(); glutDisplayFunc( new cb0_glutDisplayFunc( draw ) ); glutKeyboardFunc( new cb0_glutKeyboardFunc( keyboard ) ); glutReshapeFunc( new cb0_glutReshapeFunc( reshape ) ); glutVisibilityFunc( new cb0_glutVisibilityFunc( visible ) ); glutMainLoop(); } protected void visible( int state ) { if ( state==GLUT_VISIBLE ) { glutIdleFunc( new cb0_glutIdleFunc( redraw ) ); } else { ! glutIdleFunc( null ); } } protected void redraw() { rotAng += 0.5f; glutPostRedisplay(); } protected void initGL() { float[] pos = { 5.0f, 5.0f, 10.0f, 0.0f }; float[] red = { 0.8f, 0.1f, 0.0f, 1.0f }; --- 14,76 ---- public Gears() { + Debug.Indent(); + Debug.WriteLine( "Entering Gears() "); + + Debug.WriteLine( "Initializiing GLUT" ); glutInitDisplayMode( GLUT_RGB | GLUT_DOUBLE ); glutInitWindowSize( 480, 480 ); glutCreateWindow("Gears"); + Debug.WriteLine( "Initialzing GL" ); initGL(); + Debug.WriteLine( "Initializing GLUT-CallBacks" ); + glutDisplayFunc( new cb0_glutDisplayFunc( draw ) ); glutKeyboardFunc( new cb0_glutKeyboardFunc( keyboard ) ); glutReshapeFunc( new cb0_glutReshapeFunc( reshape ) ); + glutIdleFunc( new cb0_glutIdleFunc( redraw ) ); glutVisibilityFunc( new cb0_glutVisibilityFunc( visible ) ); + + Debug.WriteLine( "Starting Main Loop" ); glutMainLoop(); + + Debug.WriteLine( "Exiting Gears() "); + Debug.Unindent(); } protected void visible( int state ) { + Debug.Indent(); + Debug.WriteLine( "Entering Gears.visible(int)" ); + if ( state==GLUT_VISIBLE ) { glutIdleFunc( new cb0_glutIdleFunc( redraw ) ); } else { ! glutIdleFunc( new cb0_glutIdleFunc( dummy ) ); } + + Debug.WriteLine( "Exiting Gears.visible(int)" ); + Debug.Unindent(); + } + + protected void dummy() { } protected void redraw() { + Debug.Indent(); + Debug.WriteLine( "Entering Gears.redraw() "); + rotAng += 0.5f; glutPostRedisplay(); + + Debug.WriteLine( "Exiting Gears.redraw() "); + Debug.Unindent(); } protected void initGL() { + Debug.Indent(); + Debug.WriteLine( "Entering Gears.initGL() "); + + Debug.WriteLine( "Set defaults "); float[] pos = { 5.0f, 5.0f, 10.0f, 0.0f }; float[] red = { 0.8f, 0.1f, 0.0f, 1.0f }; *************** *** 57,60 **** --- 90,94 ---- /* gears */ + Debug.WriteLine( "Define Gears "); gear1 = glGenLists( 1 ); glNewList( gear1, GL_COMPILE ); *************** *** 76,82 **** --- 110,123 ---- glEnable( GL_NORMALIZE ); + + Debug.WriteLine( "Exiting Gears.initGL() "); + Debug.Unindent(); + } protected void reshape( int width, int height ) { + Debug.Indent(); + Debug.WriteLine( "Entering Gears.reshape(int,int) "); + if (height==0) height = 1; // prevent division by zero float h = ((float)height) / ((float)width); *************** *** 90,96 **** --- 131,143 ---- glLoadIdentity(); glTranslatef( 0.0f, 0.0f, -40.0f ); + + Debug.WriteLine( "Exiting Gears.reshape(int,int) "); + Debug.Unindent(); } protected void draw() { + Debug.Indent(); + Debug.WriteLine( "Entering Gears.draw() "); + glClear ( GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT ); *************** *** 121,127 **** --- 168,180 ---- glutSwapBuffers(); + + Debug.WriteLine( "Exiting Gears.draw() "); + Debug.Unindent(); } protected void gear( double inner_radius, double outer_radius, double width, int teeth, double tooth_depth ) { + Debug.Indent(); + Debug.WriteLine( "Entering Gears.gear(double,double.double,int,double) "); + int i; double r0, r1, r2, angle, da, u, v, len; *************** *** 232,235 **** --- 285,291 ---- } glEnd(); + + Debug.WriteLine( "Exiting Gears.gear(double,double.double,int,double) "); + Debug.Unindent(); } *************** *** 239,245 **** public static void Main( string[] args) { new Gears(); } ! } \ No newline at end of file --- 295,303 ---- public static void Main( string[] args) { + Debug.Listeners.Add( new TextWriterTraceListener( Console.Out ) ); + Debug.AutoFlush = true; new Gears(); } ! } Index: samples.build =================================================================== RCS file: /cvsroot/csdopenglnet/csdOpenGL/samples/samples.build,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** samples.build 11 Sep 2004 14:17:51 -0000 1.2 --- samples.build 11 Sep 2004 18:52:46 -0000 1.3 *************** *** 9,17 **** <delete file="${build.dir}/${filename}.exe" failonerror="false" /> </foreach> </target> ! <target name="build" description="compiles the source code"> <foreach item="String" in="${examples}" delim=" " property="filename"> ! <csc target="exe" output="${build.dir}/${filename}.exe"> <sources> <include name="${filename}" /> --- 9,19 ---- <delete file="${build.dir}/${filename}.exe" failonerror="false" /> </foreach> + <delete file="${build.dir}/Flag.bmp" failonerror="false" /> </target> ! <target name="build" description="compiles the source code" depends="build_gtk"> ! <copy file="Flag.bmp" todir="${build.dir}" /> <foreach item="String" in="${examples}" delim=" " property="filename"> ! <csc target="exe" output="${build.dir}/${filename}.exe" debug="${debug}"> <sources> <include name="${filename}" /> *************** *** 28,33 **** </csc> </foreach> ! <foreach item="String" in="${gtkexamples}" delim=" " property="filename" if="${gtk}"> ! <csc target="exe" output="${build.dir}/${filename}.exe"> <sources> <include name="${filename}" /> --- 30,38 ---- </csc> </foreach> ! </target> ! ! <target name="build_gtk" description="compiles the source code" if="${gtk}"> ! <foreach item="String" in="${gtkexamples}" delim=" " property="filename" > ! <csc target="exe" output="${build.dir}/${filename}.exe" debug="${debug}"> <sources> <include name="${filename}" /> *************** *** 50,52 **** </foreach> </target> ! </project> \ No newline at end of file --- 55,57 ---- </foreach> </target> ! </project> |
From: Tim R. <ti...@us...> - 2004-09-11 18:52:56
|
Update of /cvsroot/csdopenglnet/csdOpenGL/Cg In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6134/Cg Modified Files: AssemblyInfo.cs Cg.build demoCg.cs Log Message: adaptation for windows Index: demoCg.cs =================================================================== RCS file: /cvsroot/csdopenglnet/csdOpenGL/Cg/demoCg.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** demoCg.cs 11 Sep 2004 14:27:26 -0000 1.1 --- demoCg.cs 11 Sep 2004 18:52:44 -0000 1.2 *************** *** 7,11 **** namespace Cg { ! public class Demo : Cg { protected IntPtr context, vertexProgram, fragmentProgram; --- 7,11 ---- namespace Cg { ! public class DemoCg : Cg { protected IntPtr context, vertexProgram, fragmentProgram; *************** *** 19,23 **** protected uint[] indices = null; ! public Demo() { Debug.Indent(); Debug.WriteLine( "Entering Demo()" ); --- 19,23 ---- protected uint[] indices = null; ! public DemoCg() { Debug.Indent(); Debug.WriteLine( "Entering Demo()" ); *************** *** 346,350 **** Debug.Listeners.Add( new TextWriterTraceListener( Console.Out ) ); Debug.AutoFlush = true; ! Demo demo = new Demo(); } --- 346,350 ---- Debug.Listeners.Add( new TextWriterTraceListener( Console.Out ) ); Debug.AutoFlush = true; ! new DemoCg(); } *************** *** 354,356 **** } } ! } \ No newline at end of file --- 354,356 ---- } } ! } Index: Cg.build =================================================================== RCS file: /cvsroot/csdopenglnet/csdOpenGL/Cg/Cg.build,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** Cg.build 11 Sep 2004 17:26:18 -0000 1.3 --- Cg.build 11 Sep 2004 18:52:44 -0000 1.4 *************** *** 7,10 **** --- 7,12 ---- <delete file="${build.dir}/csDragons.OpenGL.Cg.dll.config" failonerror="false" /> <delete file="${build.dir}/demoCg.exe" failonerror="false" /> + <delete file="${build.dir}/demo_frag.cg" failonerror="false" /> + <delete file="${build.dir}/demo_vert.cg" failonerror="false" /> <delete> <fileset> *************** *** 72,76 **** <target name="samples" description="build demos"> ! <csc target="exe" output="${build.dir}/demoCg.exe"> <sources> <include name="demoCg.cs" /> --- 74,78 ---- <target name="samples" description="build demos"> ! <csc target="exe" output="${build.dir}/demoCg.exe" debug="${debug}"> <sources> <include name="demoCg.cs" /> *************** *** 84,87 **** </references> </csc> </target> ! </project> \ No newline at end of file --- 86,91 ---- </references> </csc> + <copy file="demo_frag.cg" todir="${build.dir}" /> + <copy file="demo_vert.cg" todir="${build.dir}" /> </target> ! </project> Index: AssemblyInfo.cs =================================================================== RCS file: /cvsroot/csdopenglnet/csdOpenGL/Cg/AssemblyInfo.cs,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** AssemblyInfo.cs 11 Sep 2004 17:26:18 -0000 1.2 --- AssemblyInfo.cs 11 Sep 2004 18:52:44 -0000 1.3 *************** *** 3,15 **** using System.Runtime.InteropServices; ! // ------------------------------------------------------------------------------ ! // <autogenerated> ! // This code was generated by a tool. ! // Mono Runtime Version: 1.1.4322.573 ! // ! // Changes to this file may cause incorrect behavior and will be lost if ! // the code is regenerated. ! // </autogenerated> ! // ------------------------------------------------------------------------------ [assembly: ComVisibleAttribute(false)] --- 3,15 ---- using System.Runtime.InteropServices; ! //------------------------------------------------------------------------------ ! // <autogenerated> ! // This code was generated by a tool. ! // Runtime Version: 1.1.4322.573 ! // ! // Changes to this file may cause incorrect behavior and will be lost if ! // the code is regenerated. ! // </autogenerated> ! //------------------------------------------------------------------------------ [assembly: ComVisibleAttribute(false)] *************** *** 17,21 **** [assembly: AssemblyTitleAttribute("csDragons OpenGL-Cg#")] [assembly: AssemblyDescriptionAttribute("A tool to build C# bindings")] ! [assembly: AssemblyConfigurationAttribute("mono-1.0.unix")] [assembly: AssemblyCompanyAttribute("http://www.csdragons.de")] [assembly: AssemblyProductAttribute("wrapper-generator")] --- 17,21 ---- [assembly: AssemblyTitleAttribute("csDragons OpenGL-Cg#")] [assembly: AssemblyDescriptionAttribute("A tool to build C# bindings")] ! [assembly: AssemblyConfigurationAttribute("net-1.1.win32")] [assembly: AssemblyCompanyAttribute("http://www.csdragons.de")] [assembly: AssemblyProductAttribute("wrapper-generator")] *************** *** 25,26 **** --- 25,27 ---- [assembly: AssemblyVersionAttribute("0.2.1.1715")] [assembly: AssemblyInformationalVersionAttribute("0.2.1")] + |
From: Tim R. <ti...@us...> - 2004-09-11 18:52:56
|
Update of /cvsroot/csdopenglnet/csdOpenGL/math In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6134/math Modified Files: AssemblyInfo.cs Log Message: adaptation for windows Index: AssemblyInfo.cs =================================================================== RCS file: /cvsroot/csdopenglnet/csdOpenGL/math/AssemblyInfo.cs,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** AssemblyInfo.cs 11 Sep 2004 17:26:19 -0000 1.2 --- AssemblyInfo.cs 11 Sep 2004 18:52:45 -0000 1.3 *************** *** 3,15 **** using System.Runtime.InteropServices; ! // ------------------------------------------------------------------------------ ! // <autogenerated> ! // This code was generated by a tool. ! // Mono Runtime Version: 1.1.4322.573 ! // ! // Changes to this file may cause incorrect behavior and will be lost if ! // the code is regenerated. ! // </autogenerated> ! // ------------------------------------------------------------------------------ [assembly: ComVisibleAttribute(false)] --- 3,15 ---- using System.Runtime.InteropServices; ! //------------------------------------------------------------------------------ ! // <autogenerated> ! // This code was generated by a tool. ! // Runtime Version: 1.1.4322.573 ! // ! // Changes to this file may cause incorrect behavior and will be lost if ! // the code is regenerated. ! // </autogenerated> ! //------------------------------------------------------------------------------ [assembly: ComVisibleAttribute(false)] *************** *** 17,21 **** [assembly: AssemblyTitleAttribute("csDragons Math")] [assembly: AssemblyDescriptionAttribute("A tool to build C# bindings")] ! [assembly: AssemblyConfigurationAttribute("mono-1.0.unix")] [assembly: AssemblyCompanyAttribute("http://www.csdragons.de")] [assembly: AssemblyProductAttribute("wrapper-generator")] --- 17,21 ---- [assembly: AssemblyTitleAttribute("csDragons Math")] [assembly: AssemblyDescriptionAttribute("A tool to build C# bindings")] ! [assembly: AssemblyConfigurationAttribute("net-1.1.win32")] [assembly: AssemblyCompanyAttribute("http://www.csdragons.de")] [assembly: AssemblyProductAttribute("wrapper-generator")] *************** *** 25,26 **** --- 25,27 ---- [assembly: AssemblyVersionAttribute("0.2.1.1715")] [assembly: AssemblyInformationalVersionAttribute("0.2.1")] + |
From: Tim R. <ti...@us...> - 2004-09-11 18:52:56
|
Update of /cvsroot/csdopenglnet/csdOpenGL/tools In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6134/tools Modified Files: AssemblyInfo.cs Log Message: adaptation for windows Index: AssemblyInfo.cs =================================================================== RCS file: /cvsroot/csdopenglnet/csdOpenGL/tools/AssemblyInfo.cs,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** AssemblyInfo.cs 11 Sep 2004 17:26:20 -0000 1.2 --- AssemblyInfo.cs 11 Sep 2004 18:52:46 -0000 1.3 *************** *** 3,15 **** using System.Runtime.InteropServices; ! // ------------------------------------------------------------------------------ ! // <autogenerated> ! // This code was generated by a tool. ! // Mono Runtime Version: 1.1.4322.573 ! // ! // Changes to this file may cause incorrect behavior and will be lost if ! // the code is regenerated. ! // </autogenerated> ! // ------------------------------------------------------------------------------ [assembly: ComVisibleAttribute(false)] --- 3,15 ---- using System.Runtime.InteropServices; ! //------------------------------------------------------------------------------ ! // <autogenerated> ! // This code was generated by a tool. ! // Runtime Version: 1.1.4322.573 ! // ! // Changes to this file may cause incorrect behavior and will be lost if ! // the code is regenerated. ! // </autogenerated> ! //------------------------------------------------------------------------------ [assembly: ComVisibleAttribute(false)] *************** *** 17,21 **** [assembly: AssemblyTitleAttribute("csDragons OpenGL# Tools")] [assembly: AssemblyDescriptionAttribute("A tool to build C# bindings")] ! [assembly: AssemblyConfigurationAttribute("mono-1.0.unix")] [assembly: AssemblyCompanyAttribute("http://www.csdragons.de")] [assembly: AssemblyProductAttribute("wrapper-generator")] --- 17,21 ---- [assembly: AssemblyTitleAttribute("csDragons OpenGL# Tools")] [assembly: AssemblyDescriptionAttribute("A tool to build C# bindings")] ! [assembly: AssemblyConfigurationAttribute("net-1.1.win32")] [assembly: AssemblyCompanyAttribute("http://www.csdragons.de")] [assembly: AssemblyProductAttribute("wrapper-generator")] *************** *** 25,26 **** --- 25,27 ---- [assembly: AssemblyVersionAttribute("0.2.1.1715")] [assembly: AssemblyInformationalVersionAttribute("0.2.1")] + |
From: Tim R. <ti...@us...> - 2004-09-11 18:52:56
|
Update of /cvsroot/csdopenglnet/csdOpenGL In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6134 Modified Files: NAnt.build Log Message: adaptation for windows Index: NAnt.build =================================================================== RCS file: /cvsroot/csdopenglnet/csdOpenGL/NAnt.build,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** NAnt.build 11 Sep 2004 17:26:18 -0000 1.7 --- NAnt.build 11 Sep 2004 18:52:45 -0000 1.8 *************** *** 7,11 **** <property name="build.dir" value="${nant.project.basedir}/build/" /> <property name="debug" value="false" dynamic="true" overwrite="false" /> ! <property name="gtk" value="true" dynamic="true" overwrite="false"/> <property name="gtkdir" value="/usr/lib/mono/gtk-sharp" dynamic="true" overwrite="false"/> <property name="gen" value="${nant.project.basedir}/generator/generator.exe" /> --- 7,11 ---- <property name="build.dir" value="${nant.project.basedir}/build/" /> <property name="debug" value="false" dynamic="true" overwrite="false" /> ! <property name="gtk" value="false" dynamic="true" overwrite="false"/> <property name="gtkdir" value="/usr/lib/mono/gtk-sharp" dynamic="true" overwrite="false"/> <property name="gen" value="${nant.project.basedir}/generator/generator.exe" /> *************** *** 38,40 **** <nant buildfile="Cg/Cg.build" target="samples" if="${cg}"/> </target> ! </project> \ No newline at end of file --- 38,40 ---- <nant buildfile="Cg/Cg.build" target="samples" if="${cg}"/> </target> ! </project> |
From: Tim R. <ti...@us...> - 2004-09-11 18:52:56
|
Update of /cvsroot/csdopenglnet/csdOpenGL/GL In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6134/GL Modified Files: AssemblyInfo.cs gl.xml glu.xml Log Message: adaptation for windows Index: glu.xml =================================================================== RCS file: /cvsroot/csdopenglnet/csdOpenGL/GL/glu.xml,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** glu.xml 11 Sep 2004 12:07:14 -0000 1.4 --- glu.xml 11 Sep 2004 18:52:45 -0000 1.5 *************** *** 1,5 **** <Configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <xmlInput>glu_8h.xml</xmlInput> ! <linkLibrary>dlu32.dll</linkLibrary> <className>csdGLUBase</className> <upperClass>csdGLBase</upperClass> --- 1,5 ---- <Configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <xmlInput>glu_8h.xml</xmlInput> ! <linkLibrary>glu32.dll</linkLibrary> <className>csdGLUBase</className> <upperClass>csdGLBase</upperClass> *************** *** 14,16 **** </TypeDefs> <Namespace>csDragons.OpenGL</Namespace> ! </Configuration> \ No newline at end of file --- 14,16 ---- </TypeDefs> <Namespace>csDragons.OpenGL</Namespace> ! </Configuration> Index: gl.xml =================================================================== RCS file: /cvsroot/csdopenglnet/csdOpenGL/GL/gl.xml,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** gl.xml 11 Sep 2004 12:07:14 -0000 1.4 --- gl.xml 11 Sep 2004 18:52:45 -0000 1.5 *************** *** 8,15 **** <writeDelegates>true</writeDelegates> <writeDefines>true</writeDefines> ! <BaseTypes> ! </BaseTypes> ! <TypeDefs> ! </TypeDefs> <Namespace>csDragons.OpenGL</Namespace> ! </Configuration> \ No newline at end of file --- 8,13 ---- <writeDelegates>true</writeDelegates> <writeDefines>true</writeDefines> ! <BaseTypes /> ! <TypeDefs /> <Namespace>csDragons.OpenGL</Namespace> ! </Configuration> Index: AssemblyInfo.cs =================================================================== RCS file: /cvsroot/csdopenglnet/csdOpenGL/GL/AssemblyInfo.cs,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** AssemblyInfo.cs 11 Sep 2004 17:26:18 -0000 1.2 --- AssemblyInfo.cs 11 Sep 2004 18:52:44 -0000 1.3 *************** *** 3,15 **** using System.Runtime.InteropServices; ! // ------------------------------------------------------------------------------ ! // <autogenerated> ! // This code was generated by a tool. ! // Mono Runtime Version: 1.1.4322.573 ! // ! // Changes to this file may cause incorrect behavior and will be lost if ! // the code is regenerated. ! // </autogenerated> ! // ------------------------------------------------------------------------------ [assembly: ComVisibleAttribute(false)] --- 3,15 ---- using System.Runtime.InteropServices; ! //------------------------------------------------------------------------------ ! // <autogenerated> ! // This code was generated by a tool. ! // Runtime Version: 1.1.4322.573 ! // ! // Changes to this file may cause incorrect behavior and will be lost if ! // the code is regenerated. ! // </autogenerated> ! //------------------------------------------------------------------------------ [assembly: ComVisibleAttribute(false)] *************** *** 17,21 **** [assembly: AssemblyTitleAttribute("csDragons OpenGL#")] [assembly: AssemblyDescriptionAttribute("A tool to build C# bindings")] ! [assembly: AssemblyConfigurationAttribute("mono-1.0.unix")] [assembly: AssemblyCompanyAttribute("http://www.csdragons.de")] [assembly: AssemblyProductAttribute("wrapper-generator")] --- 17,21 ---- [assembly: AssemblyTitleAttribute("csDragons OpenGL#")] [assembly: AssemblyDescriptionAttribute("A tool to build C# bindings")] ! [assembly: AssemblyConfigurationAttribute("net-1.1.win32")] [assembly: AssemblyCompanyAttribute("http://www.csdragons.de")] [assembly: AssemblyProductAttribute("wrapper-generator")] *************** *** 25,26 **** --- 25,27 ---- [assembly: AssemblyVersionAttribute("0.2.1.1715")] [assembly: AssemblyInformationalVersionAttribute("0.2.1")] + |
From: Tim R. <ti...@us...> - 2004-09-11 18:52:56
|
Update of /cvsroot/csdopenglnet/csdOpenGL/generator In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6134/generator Modified Files: AssemblyInfo.cs generator.cs Log Message: adaptation for windows Index: generator.cs =================================================================== RCS file: /cvsroot/csdopenglnet/csdOpenGL/generator/generator.cs,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** generator.cs 6 Aug 2004 06:07:25 -0000 1.7 --- generator.cs 11 Sep 2004 18:52:45 -0000 1.8 *************** *** 123,141 **** Console.Write( "Laoding typedef statements in " ); Console.WriteLine( (string)config.typedefFiles[i] ); ! while (!reader.EOF) { // read hole xml file ! reader.Read(); ! // only memberdef open tag nodes are relevant ! if ( (reader.NodeType==XmlNodeType.Element) && (reader.LocalName=="memberdef") ) { ! switch (reader.GetAttribute("kind")) { // delegate node to compiler ! case "typedef": ! typedef.add( reader.ReadOuterXml() ); ! break; ! default: ! break; } } - } - - } reader.Close(); --- 123,145 ---- Console.Write( "Laoding typedef statements in " ); Console.WriteLine( (string)config.typedefFiles[i] ); ! try { ! while (!reader.EOF) { // read hole xml file ! reader.Read(); ! // only memberdef open tag nodes are relevant ! if ( (reader.NodeType==XmlNodeType.Element) && (reader.LocalName=="memberdef") ) { ! switch (reader.GetAttribute("kind")) { // delegate node to compiler ! case "typedef": ! typedef.add( reader.ReadOuterXml() ); ! break; ! default: ! break; ! } ! } ! } ! } catch (Exception e) { ! Debug.WriteLine( "***** " + e.ToString() ); ! Console.WriteLine( "Error Opening inputfile '"+(string)config.typedefFiles[i]+"'" ); } } reader.Close(); *************** *** 294,296 **** } } ! } \ No newline at end of file --- 298,300 ---- } } ! } Index: AssemblyInfo.cs =================================================================== RCS file: /cvsroot/csdopenglnet/csdOpenGL/generator/AssemblyInfo.cs,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** AssemblyInfo.cs 11 Sep 2004 17:26:19 -0000 1.2 --- AssemblyInfo.cs 11 Sep 2004 18:52:45 -0000 1.3 *************** *** 3,15 **** using System.Runtime.InteropServices; ! // ------------------------------------------------------------------------------ ! // <autogenerated> ! // This code was generated by a tool. ! // Mono Runtime Version: 1.1.4322.573 ! // ! // Changes to this file may cause incorrect behavior and will be lost if ! // the code is regenerated. ! // </autogenerated> ! // ------------------------------------------------------------------------------ [assembly: ComVisibleAttribute(false)] --- 3,15 ---- using System.Runtime.InteropServices; ! //------------------------------------------------------------------------------ ! // <autogenerated> ! // This code was generated by a tool. ! // Runtime Version: 1.1.4322.573 ! // ! // Changes to this file may cause incorrect behavior and will be lost if ! // the code is regenerated. ! // </autogenerated> ! //------------------------------------------------------------------------------ [assembly: ComVisibleAttribute(false)] *************** *** 17,21 **** [assembly: AssemblyTitleAttribute("csDragons WrapperGenerator")] [assembly: AssemblyDescriptionAttribute("A tool to build C# bindings")] ! [assembly: AssemblyConfigurationAttribute("mono-1.0.unix")] [assembly: AssemblyCompanyAttribute("http://www.csdragons.de")] [assembly: AssemblyProductAttribute("wrapper-generator")] --- 17,21 ---- [assembly: AssemblyTitleAttribute("csDragons WrapperGenerator")] [assembly: AssemblyDescriptionAttribute("A tool to build C# bindings")] ! [assembly: AssemblyConfigurationAttribute("net-1.1.win32")] [assembly: AssemblyCompanyAttribute("http://www.csdragons.de")] [assembly: AssemblyProductAttribute("wrapper-generator")] *************** *** 25,26 **** --- 25,27 ---- [assembly: AssemblyVersionAttribute("0.2.1.1715")] [assembly: AssemblyInformationalVersionAttribute("0.2.1")] + |
From: Tim R. <ti...@us...> - 2004-09-11 18:52:56
|
Update of /cvsroot/csdopenglnet/csdOpenGL/platform/windows In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6134/platform/windows Modified Files: AssemblyInfo.cs windows.build Log Message: adaptation for windows Index: windows.build =================================================================== RCS file: /cvsroot/csdopenglnet/csdOpenGL/platform/windows/windows.build,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** windows.build 11 Sep 2004 17:26:19 -0000 1.2 --- windows.build 11 Sep 2004 18:52:46 -0000 1.3 *************** *** 35,39 **** </target> ! <target name="build" description="compiles the source code" depends="compile-assemblyinfo"> <csc target="library" output="${build.dir}/csDragons.OpenGL.Platform.dll" debug="${debug}"> <sources> --- 35,39 ---- </target> ! <target name="build" description="compiles the source code" depends="create-assemblyinfo"> <csc target="library" output="${build.dir}/csDragons.OpenGL.Platform.dll" debug="${debug}"> <sources> *************** *** 49,51 **** </csc> </target> ! </project> \ No newline at end of file --- 49,51 ---- </csc> </target> ! </project> Index: AssemblyInfo.cs =================================================================== RCS file: /cvsroot/csdopenglnet/csdOpenGL/platform/windows/AssemblyInfo.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** AssemblyInfo.cs 11 Sep 2004 08:26:38 -0000 1.1 --- AssemblyInfo.cs 11 Sep 2004 18:52:46 -0000 1.2 *************** *** 1,32 **** using System.Reflection; ! using System.Runtime.CompilerServices; ! ! // Information about this assembly is defined by the following ! // attributes. ! // ! // change them to the information which is associated with the assembly ! // you compile. ! ! [assembly: AssemblyTitle("csDragons.OpenGL")] ! [assembly: AssemblyDescription("Wrapper-Library for OpenGL")] ! [assembly: AssemblyConfiguration("")] ! [assembly: AssemblyCompany("csDragons")] ! [assembly: AssemblyProduct("csDragons OpenGL.NET")] ! [assembly: AssemblyCopyright("(C)Copyright 2004 by Tim Rädisch & Kai Reichert")] ! [assembly: AssemblyTrademark("")] ! [assembly: AssemblyCulture("")] ! // The assembly version has following format : ! // ! // Major.Minor.Build.Revision // ! // You can specify all values by your own or you can build default build and revision ! // numbers with the '*' character (the default): ! [assembly: AssemblyVersion("0.1.*")] - // The following attributes specify the key for the sign of your assembly. See the - // .NET Framework documentation for more information about signing. - // This is not required, if you don't want signing let these attributes like they're. - [assembly: AssemblyDelaySign(true)] - [assembly: AssemblyKeyFile("PublicKeyFile.snk")] --- 1,27 ---- + using System; using System.Reflection; ! using System.Runtime.InteropServices; ! //------------------------------------------------------------------------------ ! // <autogenerated> ! // This code was generated by a tool. ! // Runtime Version: 1.1.4322.573 // ! // Changes to this file may cause incorrect behavior and will be lost if ! // the code is regenerated. ! // </autogenerated> ! //------------------------------------------------------------------------------ ! [assembly: ComVisibleAttribute(false)] ! [assembly: CLSCompliantAttribute(false)] ! [assembly: AssemblyTitleAttribute("csDragons OpenGL# Windows-Platform-Bindings")] ! [assembly: AssemblyDescriptionAttribute("A tool to build C# bindings")] ! [assembly: AssemblyConfigurationAttribute("net-1.1.win32")] ! [assembly: AssemblyCompanyAttribute("http://www.csdragons.de")] ! [assembly: AssemblyProductAttribute("wrapper-generator")] ! [assembly: AssemblyCopyrightAttribute("Copyright (C) 2004-2004 Tim Raedisch and Kai Reichert")] ! [assembly: AssemblyTrademarkAttribute("")] ! [assembly: AssemblyCultureAttribute("")] ! [assembly: AssemblyVersionAttribute("0.2.1.1715")] ! [assembly: AssemblyInformationalVersionAttribute("0.2.1")] |
From: Tim R. <ti...@us...> - 2004-09-11 17:46:23
|
Update of /cvsroot/csdopenglnet/csdOpenGL/GL In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27050 Added Files: csDragons.OpenGL.dll.config Log Message: used for dll mapping --- NEW FILE: csDragons.OpenGL.dll.config --- <configuration> <dllmap dll="opengl32.dll" target="libGL.so" /> <dllmap dll="glu32.dll" target="libGL.so" /> <dllmap dll="glut32.dll" target="libglut.so" /> </configuration> |
From: Tim R. <ti...@us...> - 2004-09-11 17:32:00
|
Update of /cvsroot/csdopenglnet/csdOpenGL/generator In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24430 Modified Files: function.cs Log Message: "The variable is assigned but its value is never used"-warning eliminated Index: function.cs =================================================================== RCS file: /cvsroot/csdopenglnet/csdOpenGL/generator/function.cs,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** function.cs 6 Aug 2004 11:42:34 -0000 1.4 --- function.cs 11 Sep 2004 17:31:47 -0000 1.5 *************** *** 136,141 **** string t=""; string n=""; - string pt=""; - string pn=""; ArrayList p = new ArrayList(); --- 136,139 ---- *************** *** 143,147 **** doc.LoadXml( entry ); // convert xml string to xml structure XmlNodeList xl; - XmlNode c; // retrieve function name --- 141,144 ---- |
From: Tim R. <ti...@us...> - 2004-09-11 17:26:29
|
Update of /cvsroot/csdopenglnet/csdOpenGL/generator In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23493/generator Modified Files: AssemblyInfo.cs Makefile generator.build Log Message: assemblies are no longer signed AssemblyInfo is created by NAnt Index: generator.build =================================================================== RCS file: /cvsroot/csdopenglnet/csdOpenGL/generator/generator.build,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** generator.build 11 Sep 2004 16:12:09 -0000 1.1 --- generator.build 11 Sep 2004 17:26:19 -0000 1.2 *************** *** 2,9 **** <project name="OpenGL" default="build"> <description>OpenGL Wrapper Library</description> <target name="clean" description="remove all generated files"> <delete file="generator.exe" failonerror="false" /> </target> ! <target name="build" description="compiles the source code"> <csc target="exe" output="generator.exe" debug="${debug}"> <sources> --- 2,38 ---- <project name="OpenGL" default="build"> <description>OpenGL Wrapper Library</description> + <target name="clean" description="remove all generated files"> <delete file="generator.exe" failonerror="false" /> </target> ! ! <target name="create-assemblyinfo"> ! <!-- ensure AssemblyInfo.cs is writable if it already exists --> ! <attrib file="AssemblyInfo.cs" readonly="false" if="${file::exists('AssemblyInfo.cs')}" /> ! <!-- generate the source file holding the assembly-level attributes --> ! <asminfo output="AssemblyInfo.cs" language="CSharp"> ! <imports> ! <import name="System" /> ! <import name="System.Reflection" /> ! <import name="System.Runtime.InteropServices" /> ! </imports> ! <attributes> ! <attribute type="ComVisibleAttribute" value="false" /> ! <attribute type="CLSCompliantAttribute" value="true" /> ! <attribute type="AssemblyTitleAttribute" value="csDragons WrapperGenerator" /> ! <attribute type="AssemblyDescriptionAttribute" value="A tool to build C# bindings" /> ! <attribute type="AssemblyConfigurationAttribute" value="${framework::get-target-framework()}.${platform::get-name()}" /> ! <attribute type="AssemblyCompanyAttribute" value="http://www.csdragons.de" /> ! <attribute type="AssemblyProductAttribute" value="wrapper-generator" /> ! <attribute type="AssemblyCopyrightAttribute" value="Copyright (C) 2004-${datetime::get-year(datetime::now())} Tim Raedisch and Kai Reichert" /> ! <attribute type="AssemblyTrademarkAttribute" value="" /> ! <attribute type="AssemblyCultureAttribute" value="" /> ! <attribute type="AssemblyVersionAttribute" value="${project.version}.${build.number}" /> ! <attribute type="AssemblyInformationalVersionAttribute" value="${project.version}" /> ! </attributes> ! </asminfo> ! </target> ! ! <target name="build" description="compiles the source code" depends="create-assemblyinfo"> <csc target="exe" output="generator.exe" debug="${debug}"> <sources> *************** *** 12,14 **** --- 41,44 ---- </csc> </target> + </project> \ No newline at end of file Index: Makefile =================================================================== RCS file: /cvsroot/csdopenglnet/csdOpenGL/generator/Makefile,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** Makefile 17 Aug 2004 09:04:50 -0000 1.11 --- Makefile 11 Sep 2004 17:26:19 -0000 1.12 *************** *** 3,7 **** CC=mcs DEBUG=/d:DEBUG ! DEBUG= OPTS=$(DEBUG) MCS=$(CC) $(OPTS) --- 3,7 ---- CC=mcs DEBUG=/d:DEBUG ! #DEBUG= OPTS=$(DEBUG) MCS=$(CC) $(OPTS) Index: AssemblyInfo.cs =================================================================== RCS file: /cvsroot/csdopenglnet/csdOpenGL/generator/AssemblyInfo.cs,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** AssemblyInfo.cs 12 Jul 2004 17:17:56 -0000 1.1.1.1 --- AssemblyInfo.cs 11 Sep 2004 17:26:19 -0000 1.2 *************** *** 1,32 **** using System.Reflection; ! using System.Runtime.CompilerServices; ! ! // Information about this assembly is defined by the following ! // attributes. ! // ! // change them to the information which is associated with the assembly ! // you compile. ! ! [assembly: AssemblyTitle("csDragons.OpenGL.WrapperGenerator")] ! [assembly: AssemblyDescription("Generator for creating wrapping libraries")] ! [assembly: AssemblyConfiguration("")] ! [assembly: AssemblyCompany("csDragons")] ! [assembly: AssemblyProduct("csDragons Wrapper Generator")] ! [assembly: AssemblyCopyright("(C)Copyright 2004 by Tim Rädisch & Kai Reichert")] ! [assembly: AssemblyTrademark("")] ! [assembly: AssemblyCulture("")] ! ! // The assembly version has following format : ! // ! // Major.Minor.Build.Revision ! // ! // You can specify all values by your own or you can build default build and revision ! // numbers with the '*' character (the default): ! [assembly: AssemblyVersion("0.1.*")] ! // The following attributes specify the key for the sign of your assembly. See the ! // .NET Framework documentation for more information about signing. ! // This is not required, if you don't want signing let these attributes like they're. ! [assembly: AssemblyDelaySign(true)] ! [assembly: AssemblyKeyFile("PublicKeyFile.snk")] --- 1,26 ---- + using System; using System.Reflection; ! using System.Runtime.InteropServices; ! // ------------------------------------------------------------------------------ ! // <autogenerated> ! // This code was generated by a tool. ! // Mono Runtime Version: 1.1.4322.573 ! // ! // Changes to this file may cause incorrect behavior and will be lost if ! // the code is regenerated. ! // </autogenerated> ! // ------------------------------------------------------------------------------ ! [assembly: ComVisibleAttribute(false)] ! [assembly: CLSCompliantAttribute(true)] ! [assembly: AssemblyTitleAttribute("csDragons WrapperGenerator")] ! [assembly: AssemblyDescriptionAttribute("A tool to build C# bindings")] ! [assembly: AssemblyConfigurationAttribute("mono-1.0.unix")] ! [assembly: AssemblyCompanyAttribute("http://www.csdragons.de")] ! [assembly: AssemblyProductAttribute("wrapper-generator")] ! [assembly: AssemblyCopyrightAttribute("Copyright (C) 2004-2004 Tim Raedisch and Kai Reichert")] ! [assembly: AssemblyTrademarkAttribute("")] ! [assembly: AssemblyCultureAttribute("")] ! [assembly: AssemblyVersionAttribute("0.2.1.1715")] ! [assembly: AssemblyInformationalVersionAttribute("0.2.1")] |
From: Tim R. <ti...@us...> - 2004-09-11 17:26:29
|
Update of /cvsroot/csdopenglnet/csdOpenGL/tools In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23493/tools Modified Files: AssemblyInfo.cs tools.build Log Message: assemblies are no longer signed AssemblyInfo is created by NAnt Index: tools.build =================================================================== RCS file: /cvsroot/csdopenglnet/csdOpenGL/tools/tools.build,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** tools.build 11 Sep 2004 12:07:15 -0000 1.3 --- tools.build 11 Sep 2004 17:26:20 -0000 1.4 *************** *** 2,9 **** <project name="OpenGL Tools Library" default="build"> <description>Basic Math Library</description> <target name="clean" description="remove all generated files"> <delete file="${build.dir}/csDragons.OpenGL.Tools.dll" failonerror="false" /> </target> ! <target name="build" description="compiles the source code"> <csc target="library" output="${build.dir}/csDragons.OpenGL.Tools.dll" debug="${debug}"> <sources> --- 2,38 ---- <project name="OpenGL Tools Library" default="build"> <description>Basic Math Library</description> + <target name="clean" description="remove all generated files"> <delete file="${build.dir}/csDragons.OpenGL.Tools.dll" failonerror="false" /> </target> ! ! <target name="create-assemblyinfo"> ! <!-- ensure AssemblyInfo.cs is writable if it already exists --> ! <attrib file="AssemblyInfo.cs" readonly="false" if="${file::exists('AssemblyInfo.cs')}" /> ! <!-- generate the source file holding the assembly-level attributes --> ! <asminfo output="AssemblyInfo.cs" language="CSharp"> ! <imports> ! <import name="System" /> ! <import name="System.Reflection" /> ! <import name="System.Runtime.InteropServices" /> ! </imports> ! <attributes> ! <attribute type="ComVisibleAttribute" value="false" /> ! <attribute type="CLSCompliantAttribute" value="false" /> ! <attribute type="AssemblyTitleAttribute" value="csDragons OpenGL# Tools" /> ! <attribute type="AssemblyDescriptionAttribute" value="A tool to build C# bindings" /> ! <attribute type="AssemblyConfigurationAttribute" value="${framework::get-target-framework()}.${platform::get-name()}" /> ! <attribute type="AssemblyCompanyAttribute" value="http://www.csdragons.de" /> ! <attribute type="AssemblyProductAttribute" value="wrapper-generator" /> ! <attribute type="AssemblyCopyrightAttribute" value="Copyright (C) 2004-${datetime::get-year(datetime::now())} Tim Raedisch and Kai Reichert" /> ! <attribute type="AssemblyTrademarkAttribute" value="" /> ! <attribute type="AssemblyCultureAttribute" value="" /> ! <attribute type="AssemblyVersionAttribute" value="${project.version}.${build.number}" /> ! <attribute type="AssemblyInformationalVersionAttribute" value="${project.version}" /> ! </attributes> ! </asminfo> ! </target> ! ! <target name="build" description="compiles the source code" depends="create-assemblyinfo"> <csc target="library" output="${build.dir}/csDragons.OpenGL.Tools.dll" debug="${debug}"> <sources> Index: AssemblyInfo.cs =================================================================== RCS file: /cvsroot/csdopenglnet/csdOpenGL/tools/AssemblyInfo.cs,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** AssemblyInfo.cs 12 Jul 2004 17:17:29 -0000 1.1.1.1 --- AssemblyInfo.cs 11 Sep 2004 17:26:20 -0000 1.2 *************** *** 1,32 **** using System.Reflection; ! using System.Runtime.CompilerServices; ! ! // Information about this assembly is defined by the following ! // attributes. ! // ! // change them to the information which is associated with the assembly ! // you compile. ! ! [assembly: AssemblyTitle("csDragons.OpenGL - Tools")] ! [assembly: AssemblyDescription("Utility classes")] ! [assembly: AssemblyConfiguration("")] ! [assembly: AssemblyCompany("csDragons")] ! [assembly: AssemblyProduct("csDragons OpenGL Tools")] ! [assembly: AssemblyCopyright("(C)Copyright 2004 by Tim Rädisch & Kai Reichert")] ! [assembly: AssemblyTrademark("")] ! [assembly: AssemblyCulture("")] ! ! // The assembly version has following format : ! // ! // Major.Minor.Build.Revision ! // ! // You can specify all values by your own or you can build default build and revision ! // numbers with the '*' character (the default): ! [assembly: AssemblyVersion("0.1.*")] ! // The following attributes specify the key for the sign of your assembly. See the ! // .NET Framework documentation for more information about signing. ! // This is not required, if you don't want signing let these attributes like they're. ! [assembly: AssemblyDelaySign(true)] ! [assembly: AssemblyKeyFile("PublicKeyFile.snk")] --- 1,26 ---- + using System; using System.Reflection; ! using System.Runtime.InteropServices; ! // ------------------------------------------------------------------------------ ! // <autogenerated> ! // This code was generated by a tool. ! // Mono Runtime Version: 1.1.4322.573 ! // ! // Changes to this file may cause incorrect behavior and will be lost if ! // the code is regenerated. ! // </autogenerated> ! // ------------------------------------------------------------------------------ ! [assembly: ComVisibleAttribute(false)] ! [assembly: CLSCompliantAttribute(false)] ! [assembly: AssemblyTitleAttribute("csDragons OpenGL# Tools")] ! [assembly: AssemblyDescriptionAttribute("A tool to build C# bindings")] ! [assembly: AssemblyConfigurationAttribute("mono-1.0.unix")] ! [assembly: AssemblyCompanyAttribute("http://www.csdragons.de")] ! [assembly: AssemblyProductAttribute("wrapper-generator")] ! [assembly: AssemblyCopyrightAttribute("Copyright (C) 2004-2004 Tim Raedisch and Kai Reichert")] ! [assembly: AssemblyTrademarkAttribute("")] ! [assembly: AssemblyCultureAttribute("")] ! [assembly: AssemblyVersionAttribute("0.2.1.1715")] ! [assembly: AssemblyInformationalVersionAttribute("0.2.1")] |