/*---------------------------------------------------------*\ | RGBController_GainwardGPUv2.h | | | | RGBController for Gainward v2 GPU | | | | KundaPanda 04 Jan 2021 | | | | This file is part of the OpenRGB project | | SPDX-License-Identifier: GPL-2.0-only | \*---------------------------------------------------------*/ #pragma once #include "RGBController.h" #include "GainwardGPUv2Controller.h" class RGBController_GainwardGPUv2 : public RGBController { public: RGBController_GainwardGPUv2(GainwardGPUv2Controller* controller_ptr); ~RGBController_GainwardGPUv2(); void SetupZones(); void ResizeZone(int zone, int new_size); void DeviceUpdateLEDs(); void UpdateZoneLEDs(int zone); void UpdateSingleLED(int led); void SetCustomMode(); void DeviceUpdateMode(); private: GainwardGPUv2Controller* controller; };