mirror of
https://github.com/LizardByte/Sunshine.git
synced 2024-11-19 05:11:53 +00:00
12 lines
298 B
C++
12 lines
298 B
C++
#ifndef SUNSHINE_PLATFORM_CUDA_H
|
|
#define SUNSHINE_PLATFORM_CUDA_H
|
|
|
|
#include "sunshine/platform/common.h"
|
|
#include "x11grab.h"
|
|
|
|
namespace cuda {
|
|
std::shared_ptr<platf::hwdevice_t> make_hwdevice(int width, int height, platf::x11::xdisplay_t::pointer xdisplay);
|
|
int init();
|
|
} // namespace cuda
|
|
|
|
#endif |