Files
video-shader-toys/apps/LoopThroughWithOpenGLCompositing/videoio/VideoIOBackendFactory.h
Aiden 0c16665610
Some checks failed
CI / Windows Release Package (push) Has been cancelled
CI / React UI Build (push) Has been cancelled
CI / Native Windows Build And Tests (push) Has been cancelled
Revert "Decklink separation"
This reverts commit 46f2f1ece5.
2026-05-09 16:47:33 +10:00

11 lines
201 B
C++

#pragma once
#include "VideoIOConfig.h"
#include <memory>
#include <string>
class VideoIODevice;
std::unique_ptr<VideoIODevice> CreateVideoIODevice(VideoIOBackendId backendId, std::string& error);