maxwell_compute.h 471 B

12345678910111213141516171819202122
  1. // Copyright 2018 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 Tegra {
  7. namespace Engines {
  8. class MaxwellCompute final {
  9. public:
  10. MaxwellCompute() = default;
  11. ~MaxwellCompute() = default;
  12. /// Write the value to the register identified by method.
  13. void WriteReg(u32 method, u32 value);
  14. };
  15. } // namespace Engines
  16. } // namespace Tegra