* Code clean up for the MSI GPU V1 * Registered detector in `MSIGPUControllerDetect.cpp` * Link to [webpage](https://www.msi.com/Graphics-Card/GeForce-RTX-3090- SUPRIM-24G/Specification)
36 lines
979 B
C++
36 lines
979 B
C++
/*-----------------------------------------*\
|
|
| RGBController_MSIGPU.h |
|
|
| |
|
|
| Generic RGB Interface for MSI GPU |
|
|
| |
|
|
\*-----------------------------------------*/
|
|
|
|
#pragma once
|
|
|
|
#include "RGBController.h"
|
|
#include "MSIGPUController.h"
|
|
|
|
class RGBController_MSIGPU : public RGBController
|
|
{
|
|
public:
|
|
RGBController_MSIGPU(MSIGPUController* msi_gpu_ptr);
|
|
~RGBController_MSIGPU();
|
|
|
|
void SetupZones();
|
|
void ResizeZone(int zone, int new_size);
|
|
|
|
void DeviceUpdateLEDs();
|
|
void UpdateZoneLEDs(int zone);
|
|
void UpdateSingleLED(int led);
|
|
|
|
void DeviceUpdateMode();
|
|
void DeviceSaveMode();
|
|
|
|
private:
|
|
MSIGPUController* msi_gpu;
|
|
std::chrono::time_point<std::chrono::steady_clock> last_commit_time;
|
|
|
|
bool TimeToSend();
|
|
int GetDeviceMode();
|
|
int GetModeSpeed();
|
|
};
|