RenderInterface.h 990 B

123456789101112131415161718192021222324252627282930313233
  1. // Filename: RenderInterface.h
  2. // Created by: rdb (25Nov11)
  3. //
  4. ////////////////////////////////////////////////////////////////////
  5. //
  6. // PANDA 3D SOFTWARE
  7. // Copyright (c) Carnegie Mellon University. All rights reserved.
  8. //
  9. // All use of this software is subject to the terms of the revised BSD
  10. // license. You should have received a copy of this license along
  11. // with this source code in a file named "LICENSE."
  12. //
  13. ////////////////////////////////////////////////////////////////////
  14. // This file, and all the other files in this directory, aren't
  15. // intended to be compiled--they're just parsed by CPPParser (and
  16. // interrogate) in lieu of the actual system headers, to generate the
  17. // interrogate database.
  18. namespace Rocket {
  19. namespace Core {
  20. class Context;
  21. class RenderInterface;
  22. class String;
  23. class Vector2f;
  24. class Vector2i;
  25. class Vertex;
  26. typedef unsigned char byte;
  27. typedef void* CompiledGeometryHandle;
  28. typedef void* TextureHandle;
  29. }
  30. }