mirror of
https://github.com/CalcProgrammer1/OpenRGB.git
synced 2026-01-06 06:07:49 -05:00
38 lines
1015 B
C++
38 lines
1015 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 GetModeBrightness();
|
|
int GetModeSpeed();
|
|
};
|