Browse Source

*** empty log message ***

Shalin Shodhan 21 years ago
parent
commit
088296e72a
3 changed files with 64 additions and 1 deletions
  1. 2 1
      dtool/src/parser-inc/Sources.pp
  2. 34 0
      dtool/src/parser-inc/cg.h
  3. 28 0
      dtool/src/parser-inc/cgGL.h

+ 2 - 1
dtool/src/parser-inc/Sources.pp

@@ -2,5 +2,6 @@
     algorithm deque ft2build.h iostream list map memory \
     pair queue set stack stdcompare.h stdtypedefs.h \
     string vector windows.h zlib.h md5.h files.h hex.h \
-    nurbs.hh stddef.h krb5.h Python.h
+    nurbs.hh stddef.h krb5.h Python.h \
+    Cg/cg.h Cg/cgGL.h
 

+ 34 - 0
dtool/src/parser-inc/cg.h

@@ -0,0 +1,34 @@
+// Filename: cg.h
+// Created by:  drose (22Jul04)
+//
+////////////////////////////////////////////////////////////////////
+//
+// PANDA 3D SOFTWARE
+// Copyright (c) 2001 - 2004, Disney Enterprises, Inc.  All rights reserved
+//
+// All use of this software is subject to the terms of the Panda 3d
+// Software license.  You should have received a copy of this license
+// along with this source code; you will also find a current copy of
+// the license at http://etc.cmu.edu/panda3d/docs/license/ .
+//
+// To contact the maintainers of this program write to
+// [email protected] .
+//
+////////////////////////////////////////////////////////////////////
+
+// This file, and all the other files in this directory, aren't
+// intended to be compiled--they're just parsed by CPPParser (and
+// interrogate) in lieu of the actual system headers, to generate the
+// interrogate database.
+
+#ifndef CG_H
+#define CG_H
+
+typedef int CGcontext;
+typedef int CGprogram;
+typedef int CGparameter;
+typedef int CGprofile;
+typedef int CGerror;
+
+#endif
+

+ 28 - 0
dtool/src/parser-inc/cgGL.h

@@ -0,0 +1,28 @@
+// Filename: cgGl.h
+// Created by:  sshodhan(22Jul04)
+//
+////////////////////////////////////////////////////////////////////
+//
+// PANDA 3D SOFTWARE
+// Copyright (c) 2001 - 2004, Disney Enterprises, Inc.  All rights reserved
+//
+// All use of this software is subject to the terms of the Panda 3d
+// Software license.  You should have received a copy of this license
+// along with this source code; you will also find a current copy of
+// the license at http://etc.cmu.edu/panda3d/docs/license/ .
+//
+// To contact the maintainers of this program write to
+// [email protected] .
+//
+////////////////////////////////////////////////////////////////////
+
+// This file, and all the other files in this directory, aren't
+// intended to be compiled--they're just parsed by CPPParser (and
+// interrogate) in lieu of the actual system headers, to generate the
+// interrogate database.
+
+#ifndef CGGL_H
+#define CGGL_H
+
+#endif
+