* spike new graphics engine * fix remote watermarks; add graphics engine to vaapi * add graphics engine to qsv
8 lines
216 B
C#
8 lines
216 B
C#
using System.IO.Pipelines;
|
|
|
|
namespace ErsatzTV.Core.Interfaces.Streaming;
|
|
|
|
public interface IGraphicsEngine
|
|
{
|
|
Task Run(GraphicsEngineContext context, PipeWriter pipeWriter, CancellationToken cancellationToken);
|
|
} |