glGraphicsBuffer_src.I 701 B

12345678910111213141516171819202122232425
  1. // Filename: glGraphicsBuffer_src.I
  2. // Created by: jyelon (15Jan06)
  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. INLINE int CLP(GraphicsBuffer)::
  15. get_multisample_count()
  16. {
  17. return _requested_multisamples;
  18. }
  19. INLINE int CLP(GraphicsBuffer)::
  20. get_coverage_sample_count()
  21. {
  22. return _requested_coverage_samples;
  23. }