mirror of
https://github.com/CalcProgrammer1/OpenRGB.git
synced 2025-12-31 03:07:49 -05:00
21 lines
1.1 KiB
C++
21 lines
1.1 KiB
C++
#include "RGBController.h"
|
|
#include "RGBController_AorusGPU.h"
|
|
#include <vector>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
|
|
/******************************************************************************************\
|
|
* *
|
|
* DetectAorusGPUControllers *
|
|
* *
|
|
* Detect devices supported by the Aorus GPU driver *
|
|
* * *
|
|
\******************************************************************************************/
|
|
|
|
void DetectAorusGPUControllers(std::vector<RGBController*> &rgb_controllers)
|
|
{
|
|
RGBController_AorusGPU * aorus_rgb = new RGBController_AorusGPU();
|
|
|
|
rgb_controllers.push_back(aorus_rgb);
|
|
} /* DetectLEDStripControllers() */ |