mirror of
https://github.com/moonlight-stream/moonlight-qt.git
synced 2025-07-18 10:32:38 +00:00
19 lines
300 B
C++
19 lines
300 B
C++
#pragma once
|
|
|
|
#include "renderer.h"
|
|
|
|
// A factory is required to avoid pulling in
|
|
// incompatible Objective-C headers.
|
|
|
|
class VTMetalRendererFactory {
|
|
public:
|
|
static
|
|
IFFmpegRenderer* createRenderer();
|
|
};
|
|
|
|
class VTRendererFactory {
|
|
public:
|
|
static
|
|
IFFmpegRenderer* createRenderer();
|
|
};
|