40 lines
1.2 KiB
C++
40 lines
1.2 KiB
C++
/*---------------------------------------------------------*\
|
|
| RGBController_ZotacV2GPU.h |
|
|
| |
|
|
| RGBController for Zotac V2 GPU |
|
|
| |
|
|
| Krzysztof Haładyn (krzys_h) 16 Mar 2023 |
|
|
| |
|
|
| This file is part of the OpenRGB project |
|
|
| SPDX-License-Identifier: GPL-2.0-only |
|
|
\*---------------------------------------------------------*/
|
|
|
|
#pragma once
|
|
|
|
#include "RGBController.h"
|
|
#include "ZotacV2GPUController.h"
|
|
|
|
class RGBController_ZotacV2GPU : public RGBController
|
|
{
|
|
public:
|
|
RGBController_ZotacV2GPU(ZotacV2GPUController* controller_ptr);
|
|
~RGBController_ZotacV2GPU();
|
|
|
|
void SetupInitialValues();
|
|
void SetupZones();
|
|
|
|
void ResizeZone(int zone, int new_size);
|
|
|
|
void DeviceUpdateLEDs();
|
|
void UpdateZoneLEDs(int zone);
|
|
void UpdateSingleLED(int led);
|
|
|
|
void DeviceUpdateMode();
|
|
|
|
ZotacV2GPUConfig config;
|
|
|
|
private:
|
|
ZotacV2GPUController* controller;
|
|
|
|
int FindSynchronizedZoneNum(int syncMode);
|
|
};
|