gsp_lcd.cpp 820 B

1234567891011121314151617181920212223242526272829
  1. // Copyright 2015 Citra Emulator Project
  2. // Licensed under GPLv2 or any later version
  3. // Refer to the license.txt file included.
  4. #include "core/hle/service/gsp_lcd.h"
  5. namespace Service {
  6. namespace GSP {
  7. const Interface::FunctionInfo FunctionTable[] = {
  8. // clang-format off
  9. {0x000A0080, nullptr, "SetBrightnessRaw"},
  10. {0x000B0080, nullptr, "SetBrightness"},
  11. {0x000F0000, nullptr, "PowerOnAllBacklights"},
  12. {0x00100000, nullptr, "PowerOffAllBacklights"},
  13. {0x00110040, nullptr, "PowerOnBacklight"},
  14. {0x00120040, nullptr, "PowerOffBacklight"},
  15. {0x00130040, nullptr, "SetLedForceOff"},
  16. {0x00140000, nullptr, "GetVendor"},
  17. {0x00150040, nullptr, "GetBrightness"},
  18. // clang-format on
  19. };
  20. GSP_LCD::GSP_LCD() {
  21. Register(FunctionTable);
  22. }
  23. } // namespace GSP
  24. } // namespace Service