tinyGraphicsBuffer.I 889 B

12345678910111213141516171819202122232425
  1. // Filename: tinyGraphicsBuffer.I
  2. // Created by: drose (08Aug08)
  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. ////////////////////////////////////////////////////////////////////
  15. // Function: TinyGraphicsBuffer::get_frame_buffer
  16. // Access: Public
  17. // Description: Returns a direct pointer to the frame buffer used in
  18. // this object.
  19. ////////////////////////////////////////////////////////////////////
  20. ZBuffer *TinyGraphicsBuffer::
  21. get_frame_buffer() {
  22. return _frame_buffer;
  23. }