stage.h 362 B

123456789101112131415161718192021
  1. // Copyright 2021 yuzu Emulator Project
  2. // Licensed under GPLv2 or any later version
  3. // Refer to the license.txt file included.
  4. #pragma once
  5. #include "common/common_types.h"
  6. namespace Shader {
  7. enum class Stage : u32 {
  8. Compute,
  9. VertexA,
  10. VertexB,
  11. TessellationControl,
  12. TessellationEval,
  13. Geometry,
  14. Fragment,
  15. };
  16. } // namespace Shader