CmDrawOps.h 367 B

1234567891011121314151617181920
  1. #pragma once
  2. #include "CmPrerequisites.h"
  3. namespace BansheeEngine
  4. {
  5. /**
  6. * @brief Describes operation that will be used for rendering a certain
  7. * set of vertices.
  8. */
  9. enum DrawOperationType
  10. {
  11. DOT_POINT_LIST = 1,
  12. DOT_LINE_LIST = 2,
  13. DOT_LINE_STRIP = 3,
  14. DOT_TRIANGLE_LIST = 4,
  15. DOT_TRIANGLE_STRIP = 5,
  16. DOT_TRIANGLE_FAN = 6
  17. };
  18. }