mirror of
https://dev.lirent.ru/Vatrog/vm-automation-signaling.git
synced 2026-06-25 20:36:36 +03:00
bd8b966017
- src/si/vgpu-stream: in-guest vgpu producer built as a Windows cross-compiled target (if(WIN32)) - .gitea: release workflow — cross-build the agent and build/publish the deb against system vmie - cmake/makefile: resolve vmie from a source tree (LIBVMIE_PATH) or installed libvmie-dev
11 lines
251 B
C
11 lines
251 B
C
#ifndef VGPU_CAPTURE_DDA_H
|
|
#define VGPU_CAPTURE_DDA_H
|
|
|
|
/* capture_dda.h — DXGI Desktop Duplication capture backend (win32). */
|
|
|
|
#include "ctx.h" /* win32 vgpu_ctx */
|
|
|
|
int dda_start(vgpu_ctx* ctx, int fps);
|
|
|
|
#endif /* VGPU_CAPTURE_DDA_H */
|