mirror of
https://github.com/thinkonmay/sunshine-sdk.git
synced 2026-01-11 16:55:31 +00:00
16 lines
433 B
C++
16 lines
433 B
C++
#ifndef SUNSHINE_VAAPI_H
|
|
#define SUNSHINE_VAAPI_H
|
|
|
|
#include "misc.h"
|
|
#include "sunshine/platform/common.h"
|
|
|
|
namespace egl {
|
|
struct surface_descriptor_t;
|
|
}
|
|
namespace va {
|
|
std::shared_ptr<platf::hwdevice_t> make_hwdevice(int width, int height);
|
|
std::shared_ptr<platf::hwdevice_t> make_hwdevice(int width, int height, file_t &&card, int offset_x, int offset_y, const egl::surface_descriptor_t &sd);
|
|
|
|
int init();
|
|
} // namespace va
|
|
#endif |