vi_u.cpp 560 B

12345678910111213141516171819
  1. // Copyright 2018 yuzu emulator team
  2. // Licensed under GPLv2 or any later version
  3. // Refer to the license.txt file included.
  4. #include "core/hle/service/vi/vi_u.h"
  5. namespace Service {
  6. namespace VI {
  7. VI_U::VI_U(std::shared_ptr<Module> module, std::shared_ptr<NVFlinger::NVFlinger> nv_flinger)
  8. : Module::Interface(std::move(module), "vi:u", std::move(nv_flinger)) {
  9. static const FunctionInfo functions[] = {
  10. {0, &VI_U::GetDisplayService, "GetDisplayService"},
  11. };
  12. RegisterHandlers(functions);
  13. }
  14. } // namespace VI
  15. } // namespace Service