/*---------------------------------------------------------*\ | RGBController_MSIGPUv2.h | | | | RGBController for MSI V2 GPU (ITE9) | | | | Wojciech Lazarski 03 Jan 2023 | | | | This file is part of the OpenRGB project | | SPDX-License-Identifier: GPL-2.0-only | \*---------------------------------------------------------*/ #pragma once #include "pci_ids.h" #include "RGBController.h" #include "MSIGPUv2Controller.h" class RGBController_MSIGPUv2 : public RGBController { public: RGBController_MSIGPUv2(MSIGPUv2Controller* msi_gpu_ptr, int msi_gpu_id); ~RGBController_MSIGPUv2(); void SetupZones(); void ResizeZone(int zone, int new_size); void DeviceUpdateLEDs(); void UpdateZoneLEDs(int zone); void UpdateSingleLED(int led); void DeviceUpdateMode(); void DeviceSaveMode(); private: MSIGPUv2Controller* msi_gpu; void DeviceUpdateAll(const mode& current_mode); };