vi_u.cpp 535 B

1234567891011121314151617
  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::VI {
  6. VI_U::VI_U(std::shared_ptr<Module> module, std::shared_ptr<NVFlinger::NVFlinger> nv_flinger)
  7. : Module::Interface(std::move(module), "vi:u", std::move(nv_flinger)) {
  8. static const FunctionInfo functions[] = {
  9. {0, &VI_U::GetDisplayService, "GetDisplayService"},
  10. };
  11. RegisterHandlers(functions);
  12. }
  13. } // namespace Service::VI